body{
    background-color: rgba(204, 245, 55, 0.5);    
}
.cell{
    width: 75px;
    height: 75px;
    border: 2px solid;
    box-shadow: 0 0 0 2px;
    line-height: 75px;
    font-size: 75px;
    cursor: pointer;
}
#gameRow{
    display: flex;
    margin-inline: 300px;
}
#gameContainer{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
}
#cellContainer{
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 225px;
    margin: auto;
}
#restartBtn{
    width: 100px;
    height: 50px;
    background-color: rgb(155, 255, 255);
    border-radius: 10px;
    font-size: 20px;
}