*{
    margin: 0;
    padding: 0;
}

body{
    /* FROM  coolors website */
    background-color:#51857E;
    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: 10px;
    border: none;
    font-size: 8vmin;
    color:#B57979;
    box-shadow: 0 0 1rem rgba(0 ,0 ,0, 0.4) ;
    background-color: rgb(255, 255, 255);
   

}

.reset{
    height: 8vmin;
    width: 25vmin;
    border-radius: 20px;
    border: none;
    font-size: 5vmin;
    color:#ede7e7;
    background-color: #3a3737;
    box-shadow: 0 0 1rem rgba(0 ,0 ,0, 0.4) ;

}
.newgame{
    height: 8vmin;
    width: 50vmin;
    border-radius: 20px;
    border: none;
    font-size: 5vmin;
    color:#ede7e7;
    background-color: #3a3737;
    box-shadow: 0 0 1rem rgba(0 ,0 ,0, 0.4) ;

}

#msg{
    color:#254D32;
    font-size: 8vmin;
    display: flex;
    text-align: center;
    justify-content: center;

   
}
.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5vmin;
}

.hide{
    padding: 0px;
    display: none;
}