body {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: aliceblue;
    background-image: url('multimedia/img1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container {
    text-align: center;
}

.greetings {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    letter-spacing: 5px;
    text-shadow: 0 0 5px #14219c, #a50044;
}

.greetings > span {
    display: inline-block;
    animation: glowBarca 2.5s ease-in-out infinite;
}

/* Animación personalizada con los colores del Barça */
@keyframes glowBarca {
    0%, 100% {
        color: #faea0c;
        text-shadow: 
            0 0 10px #ffd700,
            0 0 30px #a50044,
            0 0 80px #004d98,
            0 0 80px #ffd700;
    }
    10%, 90% {
        color: #ffffff;
        text-shadow: none;
    }
}

/* Delays para cada letra */
.greetings > span:nth-child(1) { animation-delay: 0s; }
.greetings > span:nth-child(2) { animation-delay: 0.2s; }
.greetings > span:nth-child(3) { animation-delay: 0.4s; }
.greetings > span:nth-child(4) { animation-delay: 0.6s; }
.greetings > span:nth-child(5) { animation-delay: 0.8s; }
.greetings > span:nth-child(6) { animation-delay: 1s; }
.greetings > span:nth-child(7) { animation-delay: 1.2s; }
.greetings > span:nth-child(8) { animation-delay: 1.4s; }
.greetings > span:nth-child(9) { animation-delay: 1.6s; }
.greetings > span:nth-child(10) { animation-delay: 1.8s; }
.greetings > span:nth-child(11) { animation-delay: 2s; }
.greetings > span:nth-child(12) { animation-delay: 2.2s; }

.description {
    font-size: 2rem;
    margin: 20px 0;
    color: #ffd700; /* dorado */
    text-shadow:
        0 0 5px #a50044,
        0 0 10px #004d98,
        1px 1px 3px black;
    animation: descriptionPulse 3s ease-in-out infinite;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes descriptionPulse {
    0%, 100% {
        text-shadow:
            0 0 5px #a50044,
            0 0 10px #004d98,
            1px 1px 3px black;
        transform: scale(1);
    }
    50% {
        text-shadow:
            0 0 10px #ffd700,
            0 0 20px #a50044,
            0 0 30px #004d98;
        transform: scale(1.02);
    }
}

.buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    animation: fadeIn 2s ease-in;
  }
  
  .button {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd700;
    background: linear-gradient(90deg, #a50044 0%, #004d98 100%);
    padding: 15px 35px;
    border: 3px solid #ffd700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease-in-out;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
  }
  
  .button:hover {
    color: #ffffff;
    background: linear-gradient(90deg, #004d98 0%, #a50044 100%);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    transform: scale(1.1);
    border-color: #ffffff;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
