@import url('https://fonts.googleapis.com/css?family=Happy+Monkey&display=swap');
.body{
    font-family: 'Happy Monkey', cursive;
}

.gameModal {
    display: block;
    font-family: 'Happy Monkey', cursive;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.678);
}

#gameHeader{
    grid-row: 1/2;
    grid-column: 1/4;
    padding-top: 10vh;
    user-select: none;
}

.modalContent{
    display: block;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    padding: 10%;
    width: 60%;
    height: 35%;
    background-color: rgba(55, 183, 206, 0.767);
}

#gamePrompt{
    text-align: center;
    user-select: none;
    font-size: 5vh;
}

#coinsToFlip{
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 1%;
    padding-bottom: 1%;
    text-align: center;
    font-size: 150%;
    font-family: 'Happy Monkey', cursive;
    outline: none;
}

#inputBtn{
    font-size: 90%;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-top: 10px;
    user-select: none;
    font-family: 'Happy Monkey', cursive;
}

input[type="button"]{
    border: none;
    outline: none;
    color: snow;
    border-radius: 50px;
    background-color: rgb(32, 141, 184);
    cursor: pointer;
    
}

input[type="button"]:hover{
    background-color: rgb(228, 179, 213);
    cursor: pointer;
}

#errorMsg{
    padding-top: 2%;
    color: red;
}

.gameBody{
    font-family: 'Happy Monkey', cursive;
    /* background: url("KirbyBackground.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.character{
    grid-row: 3/4;
    grid-column: 2/3;
    margin: auto;
    padding-bottom: 3vh;
}
#kirby{
    margin-top: 70px;
    border-radius: 50%;
    background: pink;
    box-shadow: 0px 0px 2px red;
    width: 100px;
    height: 100px;
}

#kirby-eye-left{
    position: absolute;
    border-radius: 50%;
    margin-top: 20px;
    margin-left: 27px;
    width: 15px;
    height: 35px;
    background: black;

}
#kirby-eye-left::before{
    content:"";
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    margin-top: 2px;
    margin-left: -4px;
    width: 9px;
    height: 15px;
    background: white;

}

#kirby-eye-left::after{
    content:"";
    position: absolute;
    border-radius: 50%;
    margin-top: 6px;
    margin-left: -5px;
    width: 11px;
    height: 26px;
    background: radial-gradient(ellipse at top, #080808 0%, #237bd8 100%);
}

#kirby-eye-right{
    position: absolute;
    border-radius: 50%;
    margin-top: 20px;
    margin-left: 58px;
    width: 15px;
    height: 35px;
    background: black;
}

#kirby-eye-right::before{
    content:"";
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    margin-top: 2px;
    margin-left: -4px;
    width: 9px;
    height: 15px;
    background: white;

}
#kirby-eye-right::after{
    content:"";
    position: absolute;
    border-radius: 50%;
    margin-top: 6px;
    margin-left: -5px;
    width: 11px;
    height: 26px;
    background: radial-gradient(ellipse at top, #080808 0%, #237bd8 100%);
}

#close-eye-left{
    display: none;
    position: absolute;
    border-radius: 25%;
    margin-top: 45px;
    margin-left: 27px;
    width: 15px;
    height: 5px;
    background: black;
    transform: rotate(15deg);
}
#close-eye-right{
    display: none;
    position: absolute;
    border-radius: 25%;
    margin-top: 45px;
    margin-left: 58px;
    width: 15px;
    height: 5px;
    background: black;
    transform: rotate(-15deg);
}

#blush-left{
    position: absolute;
    border-radius: 50%;
    margin-top: 55px;
    margin-left: 10px;
    width: 15px;
    height: 10px;
    background: rgb(219, 87, 98);
}
#blush-right{
    content: '';
    position: absolute;
    border-radius: 50%;
    margin-top: 55px;
    margin-left: 75px;
    width: 15px;
    height: 10px;
    background: rgb(219, 87, 98);
}

#mouth{
    position: absolute;
    border-radius: 19px 19px 35px 35px ;
    margin-top: 59px;
    margin-left: 41px;
    border-bottom: 15px solid rgb(200, 2, 2);
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    height: 0;
    width: 15px;
}

#mouth::after{
    content:'';
    position: absolute;
    margin-top: 5px;
    margin-left: -6px;
    border-radius: 30px 30px 50px 50px;
    border-bottom: 10px solid rgb(251, 45, 45);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    height: 0;
    width: 11px;
}

#arm-left{
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    transform: rotate(-25deg);
    margin-top: -60px;
    margin-left: -20px;
    width: 40px;
    height: 30px;
    background: pink;
}

#arm-right{
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    transform: rotate(25deg);
    margin-top: -60px;
    margin-left: 80px;
    width: 40px;
    height: 30px;
    background: pink;
}

#leg-left{
    position: absolute;
    z-index: -2;
    border-radius: 50% 50% 40% 50%;
    transform: rotate(-10deg);
    margin-top: -20px;
    margin-left: 3px;
    width: 45px;
    height: 30px;
    background: rgb(200, 2, 2);
}

#leg-right{
    position: absolute;
    z-index: -2;
    border-radius: 50% 50% 50% 40%;
    transform: rotate(10deg);
    margin-top: -20px;
    margin-left: 55px;
    width: 45px;
    height: 30px;
    background: rgb(200, 2, 2);
}

#shadow{
    position: absolute;
    z-index: -3;
    border-radius: 50%;
    margin-top: -5px;
    margin-left: 10px;
    width: 85px;
    height: 30px;
    background: rgba(0, 0, 0, 0.329);
}

.coin{
    grid-row: 2/3;
    grid-column: 2/3;
    margin: auto;
}

#coinBox{
    width: 100px;
    height: 100px;
    border-radius: 10%;
    background: rgb(131, 82, 42);
    box-shadow: 0px 0px 4px rgb(65, 40, 20);
}

#plack{
    position: absolute;
    margin-top: 12.5px;
    margin-left: 12.5px;
    width: 75px;
    height: 75px;
    border-radius: 10%;
    background: rgb(241, 175, 33);
    box-shadow: 0px 0px 3px rgb(56, 37, 1);
}

#Q{
    text-align: center;
    user-select: none;
    font-size: 63px;
    color: rgb(243, 242, 239);
    text-shadow: 0px 0px 3px rgb(97, 69, 9);
}

.screw{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(248, 162, 2);
    box-shadow: 0px 0px 3px rgb(56, 37, 1);
}

#screw1{
    position: absolute;
    margin-top: 17px;
    margin-left: 17px;
}

#screw2{
    position: absolute;
    margin-top: 17px;
    margin-left: 73px;
}

#screw3{
    position: absolute;
    margin-top: 73px;
    margin-left: 17px;
    
}

#screw4{
    position: absolute;
    margin-top: 73px;
    margin-left: 73px;
}

#coinHT{
    position: absolute;
    opacity: 0;
    border-radius: 50%;
    margin-top: -185px;
    margin-left: 10px;
    width: 80px;
    height: 80px;
    color: rgb(204, 133, 0);
    background: rgb(246, 172, 52);
    box-shadow: 0px 0px 5px rgb(194, 131, 31);
}

#innerCoin{
    font-size: 55px;
    font-weight: 900;
    text-align: center;
    user-select: none;
    width: 63px;
    height: 63px;
    margin: 9px;
    border-radius: 50%;
    color: rgb(241, 179, 65);
    background: rgb(195, 128, 19);
    box-shadow: 0px 0px 4px rgb(158, 102, 12);
    text-shadow: 0px 0px 3px rgb(158, 102, 12);

}

.reminders{
    grid-row: 2/4;
    grid-column: 3/4;
    margin: 5%;
}
.reminderCoins{
    float: left;
    font-size: 35px;
    font-weight: 900;
    border-radius: 50%;
    margin-left: 5px;
    margin-bottom: 5px;
    width: 40px;
    height: 40px;
    color: rgb(204, 133, 0);
    background: rgb(246, 172, 52);
    box-shadow: 0px 0px 3px rgb(194, 131, 31);
}
#reminderInnerCoins{
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    user-select: none;
    width: 30px;
    height: 30px;
    margin: 5px;
    border-radius: 50%;
    color: rgb(241, 179, 65);
    background: rgb(195, 128, 19);
    box-shadow: 0px 0px 3px rgb(158, 102, 12);
    text-shadow: 0px 0px 3px rgb(158, 102, 12);

}

.endGameModal{
    font-family: 'Happy Monkey', cursive;
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.678);
}

#YesBtn{
    font-family: 'Happy Monkey', cursive;
    user-select: none;
    font-size: 40px;
    width: 110px;
    height: 60px;
    border-radius: 50px;
}