body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 0;
}
  
h1 {
  font-size: 24px;
  margin: 20px 0;
}

p {
  margin-left: 15%;
  margin-right: 15%;
}
  
.game-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* Fijar 3 columnas */
  grid-gap: 10px;
  margin: 20px auto;  /* Centrar el tablero */
  width: 80%;  /* Ajustar el ancho a un 80% de la pantalla */
  max-width: 600px;  /* Limitar el ancho máximo */
  justify-items: center;  /* Centrar las casillas horizontalmente */
  align-items: center;  /* Centrar las casillas verticalmente */
}
  
.casilla {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: black;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
  
.casilla:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #45a049;
}  

/* Estilo para los nuevos inputs */
div {
  margin-bottom: 10px;
}

input[type="number"] {
  padding: 5px;
  font-size: 16px;
  width: 80px;
  margin-left: 10px;
}