@keyframes animated-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navanimated-border {
    background: linear-gradient(270deg, #352d2d, #746527, #2b7f47, #51769b, #2a0b39);
    background-size: 1000% 1000%;
    animation: animated-border 8s ease infinite;
    padding: 3px;
    border-radius: 0.75rem;
}
