*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 h1 {
    text-align: center;
    margin-top: 0;
}

 body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("game-bg.png");
    background-size: cover;
    padding: 40px 0;
    gap: 30px;
}

.container{
    /* background-color: aqua; */
    height: 70vmin;
    width: 70vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.05rem;
}
.box{
    width: 19vmin;
    height:19vmin;
    font-size: 9vmin;
    cursor: pointer;
    border-radius:1rem;
    border: none;
    border: 2px solid rgb(8, 4, 1);
    background-color: brown;
    box-shadow: 5px 5px 8px black;
    color: whitesmoke;
    text-shadow: 5px 5px 7px black ;
}
.box:hover{
    box-shadow: 5px 5px 2px black;
}
.box:active{
    transform: scale(0.9);
}
.reset{
    margin-bottom: 100px;
    padding: 10px;
    border: none;
    border-radius: 1rem;
    background-color: rgb(182, 110, 23);
    cursor: pointer;
    box-shadow: 5px 5px 8px black;
    color: whitesmoke;
    font-weight: bold;
}
.reset:active{
    transform: scale(0.9);
}
#msg{
    color:whitesmoke;
    font-size: 5vmin;
}

 #msg-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hide{
    display: none;
}
#new-btn{
    padding: 10px;
    border: none;
    border-radius: 1rem;
    background-color: rgb(182, 110, 23);
    cursor: pointer;
    box-shadow: 5px 5px 8px black;
    color: whitesmoke;
    font-weight: bold;
}