*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #548687;
    text-align: center;
}
h1{
    font-family: sans-serif;
    color: rgb(243, 205, 135);
    padding-top: 10px;
}
.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
}
.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1.5vmin;
}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 20px;
    border: none;
    font-size: 8vmin;
    box-shadow: 0 0 1rem rgba(0,0,0,0.5);
    color: brown;
    cursor: pointer;
    background-color: #ffffc7;
}
#res_button{
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    background-color: #191913;
    color: white;
}
#new_button{
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    background-color: #191913;
    color: white;
}
#msg{
    color: #ffffc7;
    font-size: 5vmin;
    padding: 10px;
}
.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    font-family: sans-serif;
}
.hide{
    display: none;
}