*{
    text-align: center;
}
body{
    background-color: pink
}
.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;
    font-size: 8vmin;
    background-color:rgb(160, 161, 146);
    color: aliceblue;
}
#reset-button{
    padding: 1rem;
    font-size: 1.25rem;
    border-radius: 1rem;
    background-color: black;
    color: aliceblue;
    border: 0cap;
}
.hide{
    display: none;
}
.msg_container{
    font-size: 40px;
}
#new_btn{
    height: 60px;
    width: 80px;
    background-color: rgb(47, 186, 68);
    color: black;
    border-radius: 1rem;
}
#turn-indicator{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.win{
    background-color: gold;
    color: black;
    box-shadow: 0  0  15px orange;
}