*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #548875;
    background-color: rgba(0, 0, 0, 0.337);
    background-blend-mode: overlay;
    text-align: center;
    background-image: url('../images/heroBGImg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

main{
    padding-top: 3rem;
    
}
#title{
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.container{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game{
    background-color: teal;
    border: 15px solid black;
    padding: 1%;
    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: 0px;
    border: none;
    box-shadow: 0 0 16px rgba(0,0,0,0.3);
    font-size: 8vmin;
    font-weight: bolder;
    background-color: #fffdd7;
    color: #b0413e;
}

#newGameBtn{
    padding: 1rem 2rem;
    font-size: 1.25rem;
    background-color: yellowgreen;
    color: #1B5E20;
    font-weight: 600;
    border-radius: 1rem;
    border:none;
}
#resetBtn{
    margin-top: 10px;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    background-color: yellowgreen;
    color: #1B5E20;
    font-weight: 600;
    border-radius: 1rem;
    border:none;
}

#msg{
    color: #ffffc7;
    font-size: 8vmin;
}

.msgContainer{
    height: 12vmin;
}

.hide{
    display: none;
}