*{
    margin: 0;
    padding: 0;
}

h1{
    font-size: 3rem;
    padding: 1.5rem;
}

body{
    background-color: #a3b18a;
    text-align: center;
}

.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5vmin;
    justify-content: center;
    align-items: center;

}

.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(3, 5, 5, 0.8) ;
    font-size: 8vmin;
    color: #780000;
    background-color: #f5ebe0;
}

#resetbtn{
    padding: 1rem;
    font-size: 1.3rem;
    background-color:#023e8a ;
    color: white;
    border: none;
    border-radius: 1.2rem;
}

#newGame{
    padding: 1rem;
    font-size: 1.3rem;
    background-color:#023e8a ;
    color: white;
    border: none;
    border-radius: 1.2rem; 
}

#msg{
    font-size: 8vmin;
}

.msgContainer{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.hide{
    display: none;
}