#ticTacToeBoard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 300px;
  margin: 20px auto;
  margin-bottom: 10%;
}

.cell {
  width: 100px;
  height: 100px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  cursor: pointer;
  background-color: #fff;
  color: #000; /* Hinzufügen: Textfarbe auf Schwarz setzen */
}

#Spiel h2 {
  text-align: center;
}
