body {
  font-family: sans-serif;
  text-align: center;
  background-color: #f0f0f0;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  margin: 20px auto;
  width: max-content;
}

.cell {
  background-color: white;
  border: 2px solid #333;
  font-size: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#status {
  font-size: 1.2em;
  margin-bottom: 10px;
}

