#box{
    margin: 2px;
}
body{
    background-color: #1A1423;
    text-align: center;
}
h1{
    color: #D4F2DB;
}
#container{
    height: 70vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}
#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;
    border: none;
    font-size: 8vmin;
    background-color: #F7F0F5;
    color: #0A2342
}
#new-btn{
    background-color: #84DCC6;
    color: #F7F0F5;
    border: none;
    height: 6vmin;
    border-radius: 0.5rem;
}
#reset-btn{
    background-color: #84DCC6;
    color: white;
    border: none;
    height: 6vmin;
    border-radius: 0.5rem;
}
#winner-id{
    color:#F7F0F5;
    font-size: 4vmin;
    border: 1px solid;
    border-radius: 1rem;
    width: fit-content;
    padding: 1.5vmin;
    margin: 2vmin auto;
}
.hide{
    display: none
}