.cell{
    width: 75px;
    height: 75px;
    border: 2px solid;
    border-radius: 2px;
    box-shadow: 0 0 0 2px;
    line-height: 75px;
    font-family: "Arial", sans-serif;
    font-size: 50px;
    cursor: pointer;
    text-align: center;
}
#gameContainer{
    font-family: "Arial", sans-serif;
    text-align: center;
    
}
#cellContainer{
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 240px;
    margin: auto;
    background-color: hsla(157, 15%, 54%, 0.192);
}
#restartBtn{
    border: none;
    font-size: 2rem;
    padding: 1rem;
    background-color: hsla(0, 96%, 50%, 0.267);
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0px 12px 0px 0px hsla(0, 96%, 20%, 0.267);
    
}
#restartBtn:hover{
    background-color: hsla(0, 96%, 60%, 0.267);
}
#restartBtn:active{
    transform: translateY(7px);
    box-shadow: 0px 8px 0px 0px hsla(0, 96%, 20%, 0.267);
}
#header{
    background-color: hsla(240, 28%, 46%, 0.445);
    text-align: center;
    font-family: "Arial", sans-serif;
    padding: 20px;
    border-radius: 5px;
}
.menu{
    border: 2px;
    list-style: none;
    background-color: hsla(152, 68%, 50%, 0.61);
    border-radius: 2rem;
    margin-right: 10px;
    color: hsl(0, 0%, 100%);
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.item{
    color: hsl(0, 0%, 100%);
    font-family: "Arial", sans-serif;
    font-weight: bold;
    font-size: 20px;

}
#menuNav{
    border: 2px;
    list-style: none;
    background-color: hsla(152, 68%, 30%, 0.61);
    border-radius: 2rem;
    margin-right: 10px;
    color: hsl(0, 0%, 100%);
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
#menuDiv{
    display: flex;
    border-right: 5px;
    margin: 5px;
}
body, html{
   height: 100vh;
}
#rulesContainer{
    padding: 10px;
    margin: 10px 10px;
}
.rules{
    font-family: "Arial", sans-serif;
    text-align: justify;
}