* {
    margin: 0;
    padding: 0;
}

body{
    background-color: #5E5768;
    text-align: center;
}

.container{
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.game{
    height: 60vmin;
    width: 60vmin;
    gap: 2vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    grid-area: 1.5px;
}

.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 15px;
    border: none;
    box-shadow: 0 0 1rem rgba(0,0,0,0.3);
    font-size: 8vmin;
    background-color: #151416;
    color: antiquewhite;
}

#btn{
    padding: 1rem;
    background-color: #151416;
    color: aliceblue;
    border-radius: 1rem;
    font-size: 1.5rem;
    border: none;
    
}

.newBtn{
    padding: 1rem;
    background-color: #151416;
    color: aliceblue;
    border-radius: 1rem;
    font-size: 1.5rem;
    border: none;

}

.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}


.msg{
    color: rgb(11, 13, 15);
    font-size: 3vmin;
}

.heading{
    margin-top: 2vmin;
}

.hide{
    display: none;
}