* {
    margin: 0;
    padding: 0;
}
body {
    /* background: linear-gradient(90deg , #dd5106, #ffffff,rgba(7, 126, 38, 0.787)); */
    background-color: rgb(46, 37, 37);
    text-align: center; 
    /* display: block; */
    /* position: relative; */
    background-size: cover;
    background-position: center;
    color: white;
    margin: 1rem;
}
.container{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.game {
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}
.box {
    height: 18vmin;
    width: 18vmin;
    border-radius: 0.7rem; 
    border: none;
    box-shadow:  0 0 4rem rgb(60, 142, 223);
    font-size: 55px;
    font-weight: 900;
    font-family: cursive;
    color: crimson;
    background-color: rgb(135, 135, 134);
}
#restart {
   padding: 1rem;
   margin: 1rem;
    border: none;
    border-radius: 1rem;
    font-size: 1.2 5rem;
    color: rgb(254, 254, 254);
    background-color: rgb(108, 25, 25);
}
#msg {
    font-size: 6vmin;
}
#new-btn {
    padding: 1rem;
    margin: 1rem;
     border: none;
     border-radius: 1rem;
     font-size: 1.2 5rem;
     color: rgb(254, 254, 254);
     background-color: rgb(108, 25, 25);
}
.msg-container {
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}
.hide {
    display: none;
}






