*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #EAE0D5;
    text-align: center;
}

.container{
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.game{
    height: 60vmin; /* understand the concept of vmin and vh */
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;

}
.box{
    height: 18vmin;
    width: 18vmin;
    border: none;
    box-shadow: 0 0 1rem rgba(0,0,0,01);
    border-radius: 20%;
    font-size: 8vmin;
    color: red;
}
.reset{
    padding: 1rem;
    background-color: black;
    color: white;
    font-size: 1.25rem;
    border-radius: #191913;
    border-radius: 1rem;
    border: none;
}
.msg{
    padding: 1rem;
    background-color: none;
    color: black;
    font-size: 1.25rem;
    border-radius: #191913;
    border-radius: 1rem;
    border: none;   
}