*{
    margin:0;
    padding: 0;
}
body{
   background-color: rgb(44, 131, 131);
   text-align: center;
}
.game{
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    height: 500px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.box{
    height: 150px;
    width: 150px;
    background-color: bisque;
    border-radius: 1rem;
    border: none;
    font-size: 60px;
    color: chocolate;
    
}
#reset-btn{
    height:50px;
    width: 85px;
    background-color: black;
    color: white;
    border-radius: 1rem;
    font-size: medium;
    margin-top: 20px;
}
#new-btn{
    height:50px;
    width: 100px;
    background-color: black;
    color: white;
    border-radius: 1rem;
    font-size: medium;
    margin-top: 20px;
}
.msg-container{
    height: 150px;
    
}
#msg{
    font-size: 40px;
    color: antiquewhite;
}
.hide{
    display: none;
}
.O{
    color: green;
    font-style: bold;
}
.X{
    color: red;
    font-style: bold;
}