*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #548687;
    text-align: center;
}
.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5vmin;
}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba( 0,0,0, 0.6);
    font-size: 8vmin;
    color: #b0413e;
    background-color: white;
    cursor: pointer;
}
.box:hover{
    background-color: #f0f0f0;
}
#resetbtn{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    border: none;
    border-radius: 1rem;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
}
#newbtn{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #191913;
    border: none;
    border-radius: 1rem;
    color: #fff;
    cursor: pointer;
}
#msg{
    color: #ffffc7;
    font-size: 8vmin;
}
.hide{
    display: none !important;  
}
.msgcontainer{
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 100;
}