body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(-45deg, #ffb6c1, #ff69b4, #ff1493, #ffb6c1);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    font-family: 'Arial', sans-serif;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    text-align: center;
}

h1 {
    font-size: 10em; /* Letras más grandes */
    color: gold; /* Color dorado */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5); /* Sombra para destacar */
    font-family: 'Brush Script MT', cursive; /* Fuente decorativa */
    animation: textAnimation 2s ease-in-out infinite alternate;
}

@keyframes textAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
