*{
    padding: 0;
    margin: 0;
}

body{
    background-color: #bb9457;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

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

}
.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
    font-size: 8vmin;
    color: #6f1d1b;
    background-color: #ffe6a7;
}

#reset-btn{
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.25rem;
    background-color: #432818;
    color: #fff;

}
#new-btn{
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.25rem;
    background-color: #432818;
    color: #fff;

}
#msg{
    color: #ffe6a7;
    font-size: 8vmin;
}

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

.hide{
    display: none;
}