body {
  margin: 0;
  padding: 0;
}

.container {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: yellowgreen;
}

#gameBoard {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  margin-top: 20px;
}

.cell {
  width: 100px;
  height: 100px;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  cursor: pointer;
  color: rgb(76, 76, 3);
}

.cell:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#gameStatus {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

#restartButton {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: darkgreen;
  color: white;
  border: none;
  border-radius: 16px;
}
