.cell{
    width: 75px;
    height: 75px;
    border: 2px solid black;
    box-shadow: 0 0 0 2px;
    line-height: 75px;
    font-size: 50px;
    cursor: pointer;
    background: lightgrey;
}

#game{
    text-align: center;
    font-family: "Permanent Marker", cursive;
}
#cellContainer{
    display: grid;
    grid-template-columns: repeat(3,auto);
    width: 225px;
    margin: auto;
}

button{
   height: 50px;
   width: 100px;
   border: 4px solid black;
   border-radius: 25px;
   font-family: "Permanent Marker", cursive;
   font-size: 20px;
   padding: 8px;
   cursor: pointer;
   background-color:lightpink;
}