*{
    margin: 0;
    font-family: 'Kalam', cursive;
    font-weight: 400;
    box-sizing: border-box;
    font-size: 20px;
}
h1{
    font-weight: 700;
    font-size: 50px;
}
img{
    /*filter: drop-shadow(1px 6px 5px rgba(56, 56, 56, 0.637));*/
}
button{
    all: unset;
    font-weight: 700;
    background-color: #ff8c09;
    padding: 5px 12px;
    margin-top: 15px;
    color: #fff;
    box-sizing: border-box;
    border-radius: 12px;
}
button:hover{
    background-color: #d37000;
}
b{
    font-weight: bold;
    color: #ff8c09;
}
a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
/* end and start popups */
/* ====================== */
.popup{
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #9773d3;
    padding: 50px;
    z-index: 1000;
    color: #fff;
    border-radius: 12px;
}
.start{
    display: block;
}
.status{
    display: none;
    background-color: #9873d3b0 !important;
}
.end{
    display: none;
}
.end .end-points{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #ff8800;
    margin-bottom: 8px;
}
.end .end-points>*{
    margin: 10px;
    font-size: 20px !important;
}
#computer-point-end{
    color: #ff8800 !important;
}
#human-point-end{
    color: #90d8f9 !important;
}
/* game-area and reuseables */
/* ====================== */
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.game-area{
    background-image: linear-gradient(to right, #90d8f9 50% , #FC6121 50%);
    flex-direction: column;
    height: 100vh;
    justify-content: space-around;
}
/* game top */
/* ====================== */
.game-area .top>*{
    font-size: 70px;
    padding: 50px;
    font-family: 'Rubik Iso', cursive;
    font-weight: 400;
}
/* game center */
/* ====================== */
.game-area .center img{
    max-width: 80%;
    animation: move 1s alternate infinite;
    filter: drop-shadow(1);
}
.game-area .center .human-area img{
    animation-delay: 1s;
}
.filter{
    filter: brightness(0.3);
}
@keyframes move {
    0%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(10px);
    }
}
/* game bottom */
/* ====================== */
.game-area .bottom{
    flex-wrap: nowrap;
    width: 50%;
    margin: 0 auto;
    z-index: 1;
}
.game-area .bottom img{
    width: 60%;
    margin-top: 10px;
    animation: rotate 1s alternate-reverse infinite;
}
@keyframes rotate {
    0%{
        transform: rotate(-5deg);
    }
    100%{
        transform: rotate(5deg);
    }
}
.game-area .bottom button{
    width: fit-content;
    transition: .5s ease;
    margin: 20px;
    background-color: #ffffff93;
    border-radius: 50px;
}
.game-area .bottom button:hover{
    scale: 1.1;
}
.hide{
    z-index: -1 !important;
}
@media screen and (max-width: 800px) {
    .popup{
        width: 90%;
    }
    .game-area .bottom{
        width: 80%;
    }
    .game-area .bottom img{
        width: 80%;
    }
  }
@media screen and (max-width: 450px) {
    body{
        font-size: 16px;
    }
    h1{
        font-size: 25px;
    }
    .game-area .bottom{
        width: 100%;
    }
    .game-area .bottom img{
        width: 100%;
    }
  }
