body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 50px;
}

h1 {
  margin-bottom: 10px;
}

#status {
  font-size: 24px;
  margin-bottom: 20px;
}

#board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
}

.cell {
  width: 100px;
  height: 100px;
  font-size: 48px;
  cursor: pointer;
  background: white;
  border: 2px solid black;
}

#reset-button {
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
}
