@font-face {
    font-family: 'luckiest_guy';
    src: url('fonts/luckiest_guy_regular.ttf')
    format('truetype') 
}

/* INFO-BAR */

.lobby {
    position: absolute;
    top: 24px;
    left: 24px;
    background: radial-gradient(rgb(14 171 214), rgb(11 30 172 / 74%));
    font-size: 24px;
    color: white;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid white;
    box-shadow: -2px 0px 6px 0px #fdfdfdad;
}

.lobby:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: 225ms ease-in-out;
}

#info-btn-open,  #info-btn-close {
    padding: 2px;
    background: #ffffffa6;
    border-radius: 100%;
    border: 2px solid white;
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 1;
    height: 48px;
    box-shadow: -2px 0px 6px 0px #fdfdfdad;
}

#info-btn-close {
    height: 24px;
    top: 12px !important;
    right: 12px !important;
}

#restart-btn {
    position: absolute;
    top: 16px;
    right: 100px;
    padding: 2px;
    background: #ffffffa6;
    border-radius: 100%;
    z-index: 1;
    border: 2px solid white;
    height: 52px;
    box-shadow: -2px 0px 6px 0px rgb(0, 0, 0, 0.2);
}

#info-btn-open:hover, #info-btn-close:hover, #restart-btn:hover, .fullscreen-box:hover {
    cursor: pointer;
    background-color: white;
}

#infobar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: radial-gradient(rgb(193 218 225 / 55%), rgb(11 30 172 / 74%));
    margin-bottom: -30px;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 16px);
    box-shadow: -2px 0px 6px 0px rgb(0, 0, 0, 0.2);
}

.fullscreen-box {
    top: 72px !important;
}

.fullscreen-box span {
    margin-left: 8px;
}

.music-box, .fullscreen-box {
    position: absolute;
    left: 16px;
    top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 24px;
    padding: 6px;
    background: #ffffff94;
    box-shadow: -2px 0px 6px 0px #fdfdfdad;
}

.music-box audio {
    height: 24px;
    width: 220px;
    margin-left: 4px;
}

.music-box img, .fullscreen-img {
    height: 18px;
}

.music-box img:hover {
    cursor: pointer;
}

.info-coin {    
    margin-top: -12px;
    height: 50px;
    width: 50px;
}

.info-key-arrow {
    height: 50px;
    width: 75px;
    margin-bottom: -40px;
}

.info-key-D {
    height: 40px;
    width: 40px;
    margin-bottom: -30px;
    margin-top: 12px;
}

.info-key-space {
    height: 30px;
    width: 120px;
    margin-bottom: -30px;
    margin-top: 12px;
}

.info-img {
    height: 100px;
    width: 100px;
    margin-bottom: -20px;
}

.info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 24px;
    padding: 2px;
    background: #ffffff94;
    max-width: 170px;
    min-height: 100px;
    box-shadow: -2px 0px 6px 0px #fdfdfdad;
}

.info-box span {
    font-size: 12px;
    text-align: center;
}

/* INFO-BAR END */

/* GAME OVER SCREEN */

.gameover-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50vw;
    height: 50vh;
}

.win-img {
    height: 480px;
    width: 720px;
}

/* MOBILE KEYS */

.mobil-keys {
    max-height: 70px;
    display: none;
    justify-content: space-around;
    align-items: center;
    background: #FFC764;
    padding-top: 10px;
}

.mobil-keys img {
    margin: 6px;
}

.mobil-keys img:hover {
    cursor: pointer;
}

.bubble-key-img {
    height: 32px;
    border: 6px solid #042FFE;
    border-radius: 100%;
    outline: #042FFE solid 4px;
}