/* Reseteo básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body con imagen de fondo anclada en la parte superior */
body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url('portada.jpg') no-repeat top center;
  background-size: cover;
}

/* Capa semitransparente para oscurecer ligeramente el fondo (opcional) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Ajusta la opacidad a tu gusto (0.0 = transparente, 1.0 = opaco) */
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Contenedor principal del texto con recuadro negro semitransparente */
.contenido {
  position: relative;
  z-index: 2;
  /* Fondo negro semitransparente */
  background-color: rgba(0, 0, 0, 0.6);
  /* Márgenes para separar el recuadro de los bordes de la pantalla */
  margin: 2rem;
  /* Relleno interno para que el texto no toque los bordes del recuadro */
  padding: 2rem;
  max-width: 600px;
  text-align: center;
  color: #fff;
  /* Bordes redondeados (opcional) */
  border-radius: 8px;
}

/* Título principal */
.contenido h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Párrafo */
.contenido p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 480px) {
  .contenido h1 {
    font-size: 1.6rem;
  }

  .contenido p {
    font-size: 1rem;
  }
}
