*{
    padding: 0;
    margin: 0;
}
body{
     background-color: #548687;
     text-align: center;
}

.container{
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2vmin;
}

.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2vmin;
}

.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 2vmin;
    border: none;
    font-size: 8vmin;
    color: #b0413e;
    background-color: aqua;
}

#reset{
    background-color: aqua;
    border-radius: 3vmin;
    border: none;
    width: 20vmin;
    height: 10vmin;
}


#newButton {
    background-color: #b0413e;  
    border-radius: 5px;
    border: none;
    height: 7vmin;
    width : 10vmin;
    ;

}

.win-game{
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    display: flex;
    gap: 5rem;
}

#newGame{
    height: 10vmin;
    width: 15vmin;
    border-radius: 2vmin;
    border: none;
    font-size: 3vmin;
    

}
#win{
    font-size: 10vmin;
    color: #ffffc7;
}

.hide{
    display: none;
}

.red{
    color: red;
    background-color: #b0413e;  
    border-radius: 5px;
    border: none;
    height: 7vmin;
    width : 10vmin;
}

.green{
    color: green;
    background-color: #b0413e;  
    border-radius: 5px;
    border: none;
    height: 7vmin;
    width : 10vmin;
}
.draw{
    display:none;
    
}