.hidden {
  display: none;
}

.game-container {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
}

.cell {
  text-align: center;
  align-content: center;
  background-color: white;
  font-size: 60px;
}
