/* style.css */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000; /* Fondo negro */
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #fff; /* Texto blanco por defecto */
}

#game-container {
  text-align: center;
}

h1 {
  margin-bottom: 20px;
}

#info {
  margin-bottom: 20px;
}

#info p {
  font-size: 18px;
  margin: 5px 0;
}

#info .x {
  color: red; /* X roja */
}

#info .o {
  color: blue; /* O azul */
}

#game-board {
  display: grid;
  grid-template-rows: repeat(3, 100px);
  grid-template-columns: repeat(3, 100px);
  grid-gap: 5px;
  background-color: #fff; /* Fondo del tablero blanco */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin-left: 4% !important;
}

.cell {
  width: 100px;
  height: 100px;
  background-color: #fff; /* Fondo de las celdas blanco */
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cell:hover {
  background-color: #f0f0f0;
}

.cell.x {
  color: red; /* X roja */
}

.cell.o {
  color: blue; /* O azul */
}
