body{
    background-color: cadetblue;
    text-align: center;
}
.container{
    height: 70vh;
    display: flex;
justify-content: center;
align-items: center;
}
.game{
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1.5vmin;
}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 12px;
    box-shadow: 8px 8px black ;
    font-size: 50px;
    color: red;
    border: none;
    background-color: rgb(243, 241, 240);
}
#reset-btn{
    padding: 0.8rem;
    font-size: 1.25rem;
    background-color: rgb(99, 14, 227);
    border-radius:15px ;
    box-shadow: 6px 5px black;
    color: whitesmoke;
    
}
#new-btn{
    padding: 0.8rem;
    font-size: 1.25rem;
    background-color: rgb(227, 14, 14);
    border-radius:15px ;
    box-shadow: 6px 5px black;
    color: whitesmoke;
}
#msg{
    color: white;
    font-size: 25px;
}
#msg-containner{
    height: 40px;

}
.hide{
    display: none;
}