html {
    font-size: 16px;
    font-family: monospace;
}

body {
    background-color: rgb(0, 155, 155);
    color: black;
    margin: none;
    overflow: hidden;
}

#game {
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
}

#game-play {
    width: 100%;
    height: 90%;
    background-color: white;
}

#game-slider {
    width: 100%;
    height: 10%;
    appearance: none;
}

#game-stat {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
}

#game-stat img {
    width: 40px;
}

.inline {
    display: inline;
}

#game-over {
    display: none;
    position: absolute;
    top: 16%;
    z-index: 100;
    text-align: center;
    width: 100%;
    color: white;
    background-color: gray;
}
