*{
    margin: 0;
    padding: 0;
}
body{
    text-align: center;
    background-color: blueviolet;
}
.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5vmin;
}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    background-color: #e9c46a;
    font-size: 16vmin;
}
.reset{
     font-size: 1.5rem;
     padding: 10px;
     border-radius: 1rem;
     background-color: #423c2d;
     border: none;   
}

.newg{
    font-size: 1.5rem;
     padding: 10px;
     border-radius: 1rem;
     background-color: #9a771d;
     border: none;
}

.hide{
    display: none;
}

.msg{
    font-size: 2rem;
    color: white;
}