.gameContainer{
    background-color: rgba(0, 255, 38, 0.784);
    font-family:cursive,Arial, Helvetica, sans-serif;
    text-align: center;
}
*{
    box-sizing: border-box;
}
.cell{
    width: 75px;
    height: 75px;
    border: 2px solid black;
    background-color: aqua;
    box-shadow: 0 0 0 2px ;
    line-height: 75px;
    font-size: 3rem;
    
   
}
#cellContainer{
    display: grid;
    grid-template-columns: repeat(3,auto);
    width: 225px;
    background-color: orange;
    margin: auto;
}
