*{
    margin: 0%;
    padding: 0%;
}
html,body{
    width: 100%;
    height: 100%;
    background-color: #84240c;
    text-align: center;
    color: #ffc18c;
}

#container{
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#game{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 60vmin;
    width: 60vmin;
    gap: 1.5vmin;
}
.box{
    height: 18vmin;
    width: 18vmin;
    background-color: #ffc18c;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    font-size: 10vmin;
    font-weight: bold;
}

#reset{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #563232;
    color: #e7cfb4;
    border-radius: 1rem;
    border: 1px solid black;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
#newGame{
    padding: 1rem;
    font-size: 1.25rem;
    background-color: #563232;
    color: #e7cfb4;
    border-radius: 1rem;
    border: 1px solid black;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
}
#win{
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h1{
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.msgCon{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}
.hide{
    display: none;
}