body{
    height: 500px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background-color: black;
    color: white;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    border: yellow;
    
}
.game{
    height: 100%;
    width: 70vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: -2px -3px 5px blue, 3px 7px 7px yellow;
    
    

}
.dashboard{
    height: 100px;
    width: 50vh;
    border-radius: 20px;
    border: 3px solid yellow;
  
}
.dashboard h3{
    color: white;
    font-size: 3vh;
}
.dash{
    display: flex;
    justify-content: center;
    align-items: center;
}
input{
    margin-top: 20px;
    height: 40px;
    border-radius: 20px;
    width: 50vh;
    font-size: 3vh;
}
label{
    font-size: 3vh;
}
#play{
    margin-top: 20px;
    height: 40px;
    width: 15vh;
    background-color: blue;
    box-shadow: -2px -3px 5px red, 5px 5px 5px yellowgreen;
    font-size: 20px;
    color: white;
    transition: box-shadow 2s;
}
#play:active{
    background-color: grey;  
}
#play:hover{
 
    box-shadow: -3px -4px 5px green, 5px 5px 5px rgb(231, 23, 193);
}
.btn #shuffle{
    margin-top: 20px;
    margin-left: 10px;
    height: 30px;
    width: 15vh;
    font-size: 20px;
    background-color: blue;
    color: white;
}
#toggle{
    background-color: blue;
    color: white;
    margin-top: 20px;
    margin-left: 10px;
    height: 30px;
}
.foot{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;   
}
.dance_con{
    display: flex;
    justify-content: center;
    align-items: center;
}
.dance{
    width: 30px;
    height: 30px;
    border-left: 4px solid red;
    border-right: 4px solid blue;
    border-top: 4px solid green;
    border-bottom: 4px solid yellow;
    background-color: black;
    animation-name: anime;
    animation-duration: 3s;
    animation-iteration-count: infinite; 

}
@keyframes anime{
    0%{

    }
    50%{
    /*   scale: 2;*/
        transform: rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    }
    100%{
        
       border-radius: 50%;
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}
@media (max-width: 768px){
    
   .game{
    width:87%;
    margin-top: 20px;
    height: auto;
   }
   input{
    margin-top: 20px;
    height: 40px;
    border-radius: 20px;
    width: 75%;
    font-size: 3vh;
}
label{
    font-size: 2vh;
}
.dashboard{
    height: 100px;
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: -2px -3px 7px red, 3px 5px 5px green;
  
}
.dashboard h3{
    color: white;
    font-size: 3vh;
}
}
