*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #BBBDF6;
    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: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0,0,0,0.2);
    font-size: 8vmin;
    color: #72727E;
    background-color: bisque;
}

#reset-btn{
    border: none;
    font-size: 1rem;
    padding: 1.3rem;
    border-radius: 3vmin;
    background-color: #625F63;
    color: aliceblue;
    border: none;
}

#new-gamebtn{
     border: none;
    font-size: 1rem;
    padding: 1.3rem;
    border-radius: 3vmin;
    background-color: #625F63;
    color: aliceblue;
    border: none;
   
}

.msG-container{
    height: 15vmin;
    font-size: 44px;
    color: #9212e1;
}

.hide{
    display: none;
}

#Win-text{
    font-size: 44px;
    color: #faf2ff;
}