body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: aliceblue;
    transition: all 0.2s;
    overflow: hidden;
    
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

#score {
    height: 10vh;
    font: bold 4vh "Fira Sans", sans-serif;
    text-align: center;
    white-space:pre-wrap;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

#word {
    height: 40vh;
    line-height: 100%;
    font: 10vmin "Fira Sans", sans-serif;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

#answers {
    height: 40vh;
    width: min(90%, 50vh);
    margin-left: auto;
    margin-right: auto;
}

.answer {
    height: 7vh;
    margin-bottom: 2vh;
    font: 3vh "Fira Sans", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: solid 1px;
    border-radius: 5vh;
    transition: all 0.2s;
}

.wrong {
    background-color: rgb(255, 158, 158);
}

.right {
    background-color: rgb(158, 255, 166);
}

.answer:active {
    background-color: rgb(168, 168, 168);
}

@media (hover: hover) {
    .answer:hover {
        background-color: rgb(218, 255, 236);
    }
    .answer:hover:active {
        background-color: rgb(168, 168, 168);
    }
    #sound:hover {
        background-color: rgb(206, 206, 206);
    }
    #sound:hover:active {
        background-color: rgb(168, 168, 168);
    }
    .mute:hover {
        opacity: 0.7;
    }
}

#endGame {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: block;
}

#sound {
    position: absolute;
    width: 10vh;
    height: 10vh;
    background-image: url(volume.png);
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: circle(30%);
}

#sound:active {
    background-color: rgb(168, 168, 168);
}

.mute {
    opacity: 0.3;
}