*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgba(82, 82, 209, 0.826);
    text-align: center;
    justify-content: center;
}
.crontaine{
    height: 70vh;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    /* background-color: brown; */
}

.game{
    height:60vmin;
    width:60vmin;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
    /* background-color: black; */
}



.box{
    height: 18vmin;
    width: 18vmin;
    border-radius: 1rem;
    border: solid;
    box-shadow: 0 0 1rem rgba(0, 0,0,0.9);
    font-size: 8vmin;
    background-color: rgb(246, 239, 143);
    color: black;
}

#reset{
    padding:0.5rem;
    font-size: 1.25rem;
    background-color: black;
    color: beige;
    border-radius: 1rem;

}

#msg{
    color: azure;
    font-size: 10vmin;
    height: 20vmin;
    margin-top: 15vmin;
}
.msg-container{
    height:30vmin;
}

#new-btn{
    padding:0.5rem;
    font-size: 1.25rem;
    background-color: black;
    color: beige;
    border-radius: 1rem;
    margin-bottom: 5vmin;

}

.hide{
    display: none;
}