body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: aquamarine;
    color: white;
}

h1 {
    margin-top: 40px;
    font-size: 3em;
}

#board {
display: grid;
grid-template-columns: repeat(3, 120px);
  gap: 10px;
  justify-content: center;
  margin: 30px auto;
}

.cell {
  width: 120px;
  height: 120px;
  background-color: #16213e;
  border: 3px solid #0f3460;
  font-size: 3em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.cell:hover {
  background-color: #0f3460;
}

#restart {
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 1.2em;
  background-color: #e94560;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#restart:hover {
  background-color: #c73652;
}

#status {
  font-size: 1.5em;
}
