*{
margin: 0;
padding: 0;
}

body{
    background-color: #548687;
    text-align: center;
}
h1{
    margin-top: 15px;
    background-color: greenyellow;
    display: inline;
}
.container{
    height: 65vh;
     display: flex;
    justify-content: center;
    align-items: center;

}
.box{
height: 17vmin;
width: 17vmin;
border-radius: 1rem;
border: none;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
font-size: 8vmin;
color: #b0413e;
cursor: pointer;
background-color: #ffffc7;

}
.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}

#reset{
    padding: 1rem;
    font-size: 1rem;
    background-color: #191913;
    color: white;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
}
#newbtn{
    cursor: pointer;
     padding: 1rem;
    font-size: 1rem;
    background-color: #191913;
    color: white;
    border-radius: 1rem;
    border: none;
    margin-top: 10px;
}
#msg{
    color: #ffffc7;
    font-size: 8vmin;

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