html {
    --color-one: white;
    --color-two: black;
    --color-three: #ff3131;
    --color-four: #0066ff;
}
body {
    background-color: var(--color-one);
    color: var(--color-two);
    font-family: "NIN";
    font-size: 2.5dvw;
    pointer-events: none;
    overflow: hidden;
}
.american {
    color: var(--color-four);
}
#clicktoplay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100dvw;
    justify-content: space-evenly;
    display: flexbox;
    place-items: center;
    place-content: center;
    flex-direction: column;
    text-align: center;
    pointer-events: all;
    cursor: pointer;
}
#container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100dvw;
    display: flex;
    text-align: justify;
    justify-content: center;
    display: none;
    overflow: hidden;
    background-color: var(--color-three);
    color: var(--color-one);
}
#playbutton {
    color: var(--color-three);
}
#playbutton:hover {
    color: var(--color-four);
}