/* Estilo general */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Fondo animado */
#fondoAnimado {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity 2s ease-in-out;
  background: linear-gradient(45deg, #ff6b6b, #556270);
}

/* Contenido centrado */
.contenido {
  text-align: center;
  color: white;
  z-index: 1;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.5rem;
}
