* {
    margin: 0;
    padding: 0;
}

body{
    background-color: rgba(3, 73, 50, 0.911);
    text-align: center;
    /* height: 100vh; */
}
h3{
    font-size: 4rem;
}
span{
    /* color: #fff; */
    margin-left: 220px;
    border-bottom: 2px solid black;
}
#main{
    height: 70vh;
     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;
    background-color: aliceblue;
    color: rgb(158, 25, 25);
    font-size: 3rem;
    border: none;
    border-radius: 0.5rem;
    
}
.reset-btn{
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 0.5rem;
    border: none;
    background-color: rgb(122, 49, 49);
    color: aliceblue;
}
.hide{
    display: none;
}