body {
  width: 60%;
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #dce9eb;
}

#game {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 5px;
  margin: 20px auto;
  width: 310px;
}

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

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

#reset {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
}
