body
{
    background-image: url('/assets/autumn2019_theme/img/bg.jpg');
    background-size: cover;
}
@media (min-width: 320px) and (max-width: 480px) {
    body {
        background-size: inherit !important;
        background-position-y: 30% !important;
    }
    #play-game-btn {
        display: none;
    }
}
body::after
{
    position: absolute;
    z-index: -1;

    overflow: hidden;

    width: 0;
    height: 0;

    content: url(/assets/autumn2019_theme/img/gui/buttons/hover/play.png)
    url(/assets/autumn2019_theme/img/gui/buttons/normal/play.png)
    url(/assets/autumn2019_theme/img/gui/buttons/click/play.png);
}
.game *{
    box-sizing: content-box !important;
}
.game
{
    line-height: normal !important;
    box-sizing: content-box !important;
    
    position: absolute;

    display: none;

    width: 100%;
    height: 100%;

    background-color: rgba(0,0,0,.2);
}
.game-field
{
    position: absolute;
    top: 5%;
    left: 30%;

    border: 10px #e6e6e6 solid;
    border-radius: 11px;
    background-image: url('/assets/autumn2019_theme/img/gui/frames/block.png');
    background-size: cover;
    box-shadow: 5px 5px 3px 0 #c5c5c582;
}
.controls-field
{
    font-family: 'Freckle Face', cursive;

    position: absolute;
    top: 5%;
    left: 1.5%;

    border: 10px #e6e6e6 solid;
    border-radius: 11px;
    background-color: #ffffff;
    background-image: linear-gradient(#efefef .1em, transparent .1em);
    background-size: 100% 2vh;
    box-shadow: 5px 5px 3px 0 #c5c5c582;
}
.controls-field table
{
    position: absolute;
    top: 0;

    width: 100%;
    height: 20%;
}
.controls-field table td
{
    width: 50%;
}
.controls-field table td div
{
    padding: 5px;
}
canvas
{
    background-color: rgba(4, 58, 98, .7);
}
#play-game-btn
{
    position: absolute;
    bottom: 1vh;
    left: 1vh;

    width: 15vh;
    height: 15vh;

    background-image: url(/assets/autumn2019_theme/img/gui/buttons/normal/play.png);
    background-size: contain;
}
#play-game-btn:hover
{
    cursor: pointer;

    background-image: url(/assets/autumn2019_theme/img/gui/buttons/hover/play.png);
}
#layout
{
    position: absolute;

    width: 100%;
    height: 100%;

    background-color: rgba(73, 168, 125, .97);
}
#layout-play-btn-container
{
    font-family: 'Freckle Face', cursive;
    font-size: 34px;

    position: absolute;
    top: 15%;
    left: 15%;

    width: 70%;

    letter-spacing: 2px;

    color: #ffffff;
}
#layout-play-btn, #layout-replay-btn
{
    display: inline-block;

    width: 15vh;
    height: 15vh;

    cursor: pointer;

    background-image: url(/assets/autumn2019_theme/img/gui/buttons/normal/play.png);
    background-size: contain;
}
#layout-play-btn:hover, #layout-replay-btn:hover
{
    background-image: url(/assets/autumn2019_theme/img/gui/buttons/click/play.png);
}
#items-list
{
    font-size: 25px;

    position: relative;
    top: 20%;

    width: 100%;
    height: 75%;
}
#items-list-subcontainer
{
    font-size: 3vh;

    display: grid;

    height: 100%;
    padding: 0 20px;

    text-align: center;

    grid-template-columns: 1fr 1fr;
    grid-gap: .5vw;
}
.item
{
    color: #0c4c62;
}
#count
{
    font-size: 6vh;

    text-align: center;

    color: #4e4e4e;
}
#time
{
    font-size: 6vh;

    text-align: center;

    color: #4e4e4e;
}
.found
{
    text-decoration: line-through;

    color: #d2ebf3;

    text-decoration-color: #0c4c62;
}
#clicks{
    position: absolute;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    color: #4e4e4e;
}
#score b{
    font-family: cursive;
}
#loader{
    position: absolute;
    width: 50vh;
    left: calc(50% - 25vh);
    top: calc(50% - 20vh);
    color: #becacb;
    font-size: 6vh;
    font-family: sans-serif;
    font-weight: 500;
    background-color: #00836e;
    border: 11px #6f929a solid;
    text-align: center;
    border-radius: 2px;
    padding-top: 20px;
}
#load-bar{
    height: 4vh;
    background-color: #cc7026;
    width: 0%;
    margin-top: 30px;
    font-size: 3vh;
    padding-top: 1vh;
}