*{
    margin:0;
    padding:0;
}
body{
     background-color:cadetblue;
     text-align:center;
}
.container
{
     height:70vh;
     display: flex;
     justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
}
.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;
    font-size:50px;
    color:red;
    background-color:wheat;
}
#reset-btn
{
    padding:1rem;
    font-size: 1.25rem;
    background-color: black;
    color: white;
    border-radius: 10px;
   
}
#msg
{
  color:chartreuse;
  font-size: 8vmin;
}
.win
{
    height: 15vmin;
}
.hide
{
    display: none;
}
.o {
    color: blue; 
    font-weight: bold;
}

.x {
    color: red; 
    font-weight: bold;
}
