   body {
      background-color: #420d33;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
    h1 {
      font-weight: 600;
      font-size: 2.5rem;
    }
    p {
      font-size: 1.2rem;
      line-height: 1.6;
    }

    img {
      width: 80%;
    }



    /* Animación */
    .fade-in-left {
      opacity: 0;
      transform: translateX(-90px);
      animation: fadeInLeft 2s ease forwards;
    }

    @keyframes fadeInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }