*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #548687;
}

.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;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    font-size:8vmin ;
    color: #b0413e;
    font-weight: 600;
}
#reset {
    margin-top: 2vmin;
    padding: 2vmin 3vmin;
    border-radius: 1.25rem;
    border: none;
    background-color: #b0413e;
    color: white;
    font-size: 1.5vmin;
    cursor: pointer;
}
/* #new-btn{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #b0413e;
    color: #ffff;
    border-radius: 1rem;
    border: none;
} */
 #new-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    background-color: #b0413e;
    color: white;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
}

#msg{
    font-size: 5vmin;
    color: #ffffc7;
}
.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}
    
.hide{
    display: none;
} 