*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body{
    background-color: #001524;
    text-align: center;

}

h1{
    color: #FF7D00;
    padding: 30px;
}

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

button{
    cursor: pointer;
    background-color: #ffecd1;
}

.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: 1rem;
    border: none;
    box-shadow: 0 0 1rem #15616d;
    font-size: 8vmin;
    color: #78290f;
}

#reset-game{
    padding: 1rem;
    font-size: 1.25ren;
    border-radius: 0.55rem;
    border: none;
    color: #ffecd1;
    background-color: #78290F;
    margin-top: 40px;
    margin-bottom: 40px;
}

#new-game{
    padding: 1rem;
    font-size: 1.25ren;
    border-radius: 0.55rem;
    border: none;
    color: #ffecd1;
    background-color: #78290F;
    margin-top: 20px;
}

#msg{
    color: #ffecd1;
    font-size: 5vmin;
}

.msg-container{
    height: 100vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0rem;
}

.hide{
    display: none;
}

button:hover{
    cursor: pointer;
    background-color: #f2d8b4;
}

#new-game:hover{
    background-color: #9e320e;
}

#reset-game:hover{
    background-color: #942805;
}