body{
    background-color:#548687;
    text-align: center;
}

.container{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game{
    height: 250px;
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1px;
}

.box{
    height: 80px;
    width: 80px;
    margin: 1px;
    border-radius: 1rem;
    color: black;
    font-size: 20px;
    background-color: white;
}

.msgContainer{
    height: 50px;
    background-color: aliceblue;
    color: black;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hide{
    display: none;
}