body{
    background-image: url("./img/gamebc2.jpg");
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.GameArea{  
    height: 0; 
    width: 0;
    background-color: #ee0909;
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(2, 177, 5);
    overflow: hidden;
    position: relative;
}
.imgbc{
    position: absolute;
    height: 500px;
    width: 530px;
}
.imgm , .imgS{
    height: 40px;
    width: 40px;
    margin: 5px 6.5px;
    display: none;
    position: absolute;
    z-index: 10;
}
/* .imgS{
    animation-name: coinR;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
} */
@keyframes coinR{
    0%{
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(360deg);
    }
}
.par1{
    min-height: 90%;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    position: relative;
    justify-content: space-around;
    gap: 20px;
}
.Scdiv{
    height: 100px;
    width: 200px;
    background: linear-gradient(to left,rgb(0, 217, 255), rgb(13, 255, 0)); 
    border: 2px solid rgb(0, 0, 0); 
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(255, 0, 183);
    text-align: center;
    border-radius: 5px;
    display: none;
    transition: all .5s;
}
.Scdiv:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px rgb(255, 0, 183);
}
p{
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 1px  rgb(255, 0, 183);
    margin-top: 5px;
    margin-bottom: 5px;
}
label{
    font-size: 36px;
    font-weight: bold;
    text-shadow: 1px 1px 1px  rgb(255, 0, 183);
}
.Control_Buttons{
    height: 120px;
    width: 350px;
    border: 2px solid rgb(0, 0, 0); 
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(255, 0, 183);
    background: linear-gradient(to left,rgb(0, 255, 51), rgb(51, 0, 255));
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    display: none;
    cursor: pointer;
}
.b1{
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 1px  rgb(255, 0, 183);
    background: linear-gradient(to left,orange, yellow);
    border: 2px solid rgb(0, 0, 0); 
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(255, 0, 183);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}
.b1:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px rgb(255, 0, 183);
}
.left , .right{
    width: 100px;
    height: 50px;
}
.down , .up{
    width: 100px;
    height: 40px;
}
.Succ{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 12;
    background: linear-gradient(to left,yellow,green, orange);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.statButton{
    height: 80px;
    width: 200px;
    font-size: 36px;
    animation-name: buttonMove;
    animation-timing-function: linear;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
.lev1{
    display: none;
}
@media screen and (min-width:768px) {
    .GameArea{
        position: absolute;
        top:  20px;
        left: 50px;
    }
    .par1{
        align-items: end;
    }
    .Control_Buttons{
        margin-right: 30px;
    }
    .Scdiv{
        margin-right: 90px;
    }
}
@keyframes buttonMove{
    0%{
        height: 80px;
        width: 200px;
    }
    40%{
        height: 100px;
    }
    80%{
        height: 80px;
        width: 220px;
    }
    100%{
        width: 200px;
    }
}
