body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 50px;
  font-family: "Segoe UI", sans-serif;
  background-color: #000000; /* fondo negro puro */

  /* 🎨 Fondo con negro y color suave */
  color: #e770ff; /* dorado */
  border: 10px solid;
  border-image: linear-gradient(45deg, #e770ff, #ffdd57, #e770ff) 1;
  box-sizing: border-box;
}

section {
  width: 90%;
  display: flex;
  flex-direction: column; /* Apila de arriba hacia abajo */
  justify-content: flex-start; /* Lo deja arriba */
  align-items: center; /* Centra de izquierda a derecha */
  text-align: center;
  margin-top: 60px;
}

h1 {
  font-size: 40px;
  margin-bottom: 60px;
}

h2 {
  font-size: 35px;
}

iframe {
  margin-bottom: 40px;
}

img {
  width: 300px;
  height: 350px;
}

p {
  text-align: left;
  width: 90%;
  font-size: 30px;
}
