html, body{
   margin:0px;
   padding:0px;
   height: 100%;
   
}   
body{
    font-family: 'Lato', sans-serif;
    font-size:16px;
    color:#002D62;
    overflow: hidden;
    user-select: none;
    /*
    background-image: url(../img/bea_logo.svg);
    background-size: auto 40px;
    background-position: top 30px right 50px;
    background-repeat: no-repeat;
    */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Fonts */
/* -------------------------------------------------- */

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Thin.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Chronicle';
    src: url('../fonts/ChronicleDispCond-Bold.otf');
    font-weight: 700;
}

/* Menu */
/* -------------------------------------------------- */

#menu_btn{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 32px;
    width: 32px;
    padding: 30px;
    cursor: pointer;
}
#menu{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 0px;
    background-color:#f6f6f6;
    z-index: 10;
    box-sizing: border-box;
    overflow: hidden;
}
#menu h1{
    font-family: 'Chronicle', 'Lato', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    margin: 0px;
    padding:30px 30px 30px 30px;
    white-space: nowrap;
}
#menu a{
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color:#002D62;
    padding:10px 30px 10px 30px;
    text-decoration: none;
    white-space: nowrap;
}
#menu a:hover{
    color: #59c3f0;
}

/* Game */
/* -------------------------------------------------- */

#container{
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    max-width: 1400px;
    max-height: 600px;
    transform: translate(-50%, -50%);
}
#game{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
#info{
    position: absolute;
    top: 0px;
    right: 0px;
    height: 32px;
    width: auto;
    padding: 30px;
    line-height: 32px;
    font-size: 20px;
    color:#002D62;
    text-align: right;
    cursor: pointer;
}
#animation{
    display: none;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 500px;
    height: 500px;
    background: url(../img/touch.gif) center no-repeat;
}
#header{
    height: 270px;
}
#header h1{
    font-family: 'Chronicle', 'Lato', sans-serif;
    font-weight: 700;
    font-size: 80px;
    height: 100px;
    line-height: 100px;
    color:#002D62;
    margin: 0px;
}
#header h2{
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 50px;
    height: 80px;
    line-height: 110%;
    color:#002D62;
    margin: 10px 0px 0px 0px;
}
#footer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
    /*
    display: flex;
    gap: 30px;
    */
}
#footer div{
    /*flex: 1;*/
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 34px;
    line-height: 200px;
    text-align: center;
    color: rgba(94, 102, 104, 1);
    display: none;
    transition: color 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
    background-color: rgba(225, 225, 225, 0.7);
    border-radius: 30px;
    cursor: pointer;
}
#footer div:hover{
    background-color: rgba(225, 225, 225, 1);
}

.wrong{
    color: #FFFFFF !important;
    background-color: rgba(224, 36, 31, 0.7) !important;
}

.good{
    color: #FFFFFF !important;
    background-color: rgba(172, 197, 65, 0.7) !important;
}