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

.profile-preview {
    /* background: linear-gradient(270deg, #6a11cb, #2575fc, #2a2a72)!important; */
    background-size: 600% 600%;
    animation: gradientBackground 15s ease infinite;
    color: white; /* Asegúrate de que el texto se pueda leer */
}
