*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: rgb(255, 255, 255);
    text-align: center;
}
h1{
    background-color: rgba(200, 255, 0, 0.641);
}
.container{
    height: 70vh;
    display: flex;
    /* flex-wrap: wrap; */
    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;
    border: none;
    box-shadow: 0 0 1rem rgb(32, 32, 32);
    font-size: 8vmin;
    color: rgb(255, 0, 0);
    background-color: rgba(200, 255, 0, 0.641);
}
#reset{
    padding: 0.7rem 1rem;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgb(41, 38, 38);
    background-color: rgba(200, 255, 0, 0.641);
    color: rgb(0, 0, 0);
}
#winner{
    font-size: 4vw;
    margin: 10px;
}
.hide{
    display: none;
}
#new{
    padding: 0.7rem 1rem;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgb(41, 38, 38);
    background-color: rgba(200, 255, 0, 0.641);
    color: rgb(0, 0, 0);
}