body,
html {
    margin: 0;
    padding: 0;
    background-color: black;
    max-height: 100vh;
    max-width: 100vw;
}

#unity-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    margin-top: 5vh;
    background-color: #242424;
    padding: 1rem;
    border-radius: 10px;
    max-width: 94vw;
    max-height: calc(80vh + 1rem + 30px + 2rem);
    width: fit-content;
    height: fit-content;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
}

#unity-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
}

#unity-mute-button,
#unity-fullscreen-button {
    width: 30px;
    height: 30px;
    margin-left: 1rem;
    position: relative;
    cursor: pointer;
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
