body {
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    container-type: inline-size;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.character {
    height: 100%;
    position: absolute;
    left: 50%;
}

.character img {
    height: 100%;
    position: relative;
    left: -50%;
    filter: brightness(0.5);
}

.active img {
    filter: brightness(1.0);
}

#game {
    display: inline-flex;
    aspect-ratio: 1.5 / 1; /* TODO: Adjust this */
    width: min(100cqw, 100cqh * 1.5);
    background-color: #313131;
    flex-direction: column;
    max-width: 2000px;
    justify-content: flex-end;
}

#scene {
    display: inline-flex;
    width: 100%;
    height: 70%;
    position: relative;
    overflow: hidden;

    background-position: center;
    background-size: cover;

    background-color: black;
}


#dialogue {
    display: inline-flex;
    width: 100%;
    height: 30%;
    flex-direction: column;
    color: #ffffffc7;
    container-type: inline-size;
    border: 5px solid #ffffff70;
    box-sizing: border-box;
}

#speaker {
    font-weight: bold;
    font-size: 3cqw;
    padding: 1.5cqw 1.5cqw 0.5cqw 1.5cqw;
}

#text {
    padding: 0cqw 1.5cqw 1.5cqw 1.5cqw;
    font-size: 2.7cqw;
}