*{
    margin: 0;
    padding: 0;
}
h1{
    color: wheat;
    /* display: flex; */
    justify-items: center;
    /* align-items: center; */
    padding-bottom: 4vmin;
}
body{
    background-color: rgb(33, 30, 33);
   
}


#container{
    height: 70vh;
   
   align-items: center;
    justify-items: center;
    margin-top: 3rem;
    
   
}
#game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;

   justify-content: center;
   align-items: center;
   gap: 0.5vmin;
 

}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 2rem;
    border: none;
    font-size: 10vmin;
    color: rgb(173, 48, 48);
    box-shadow: 0 0 1rem rgb(68, 64, 64);
    background-color: rgb(225, 224, 224);
    
}
.resetbutton{
    color: azure;
    background-color: rgb(103, 102, 102);

    border-radius: 2vmin;
   
    width:  18vmin;
    height: 6vmin;
    display: flex; 
    justify-content: center;
    align-items:center ;
    font: size 1.25re;;
    padding: 1rem;
    margin-top: 1rem;
    
    
}
#newbtn{
    height: 2rem;
    width: 8rem; 
    background-color: rgb(103, 102, 102);
    color: azure;
     border-radius: 0.5rem;
    display: block;
    justify-content: center;
    align-items: center;
    padding: 0.4em;
    border: none; 
   
}
#msg{
    color: wheat;
    font-size: 4vmin;
    
}
.msg-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    height: 3rem;
    margin-top: 1rem;
}

.newbtnn-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hide{
    display: none;
} 