body {
  background-color: #6be336;
}
.cell {
  width: 75px;
  height: 75px;
  border: 2px solid;
  box-shadow: 0 0 0 2px;
  line-height: 75px;
  font-size: 50px;
}
#gameContainer {
  font-family: "Permanent Marker", cursive;
  text-align: center;
}
#cellContainer {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin: auto;
  width: 225px;
}
button {
  font-family: "Permanent Marker", cursive;
  background-color: #49faaa;
  border: 1px groove;
  border-radius: 10px;
}
