body {
  text-align: center;
  font-family: Arial;
}

#gameArea {
  display: grid;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.tile {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 8px;
  display: block;
}

