@keyframes animated-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-border {
    background: linear-gradient(30deg, #2445bd, #1c82aa, #fffefb00, #3399ff, #cc66ff);
    background-size: 1000% 100%;
    animation: animated-border 8s ease infinite;
    padding: 3px;
    border-radius: 0.75rem;
}
