.background-animate:where(.astro-BREAU4GY) {
    background-size: 400%;
    animation: AnimationName 4s ease infinite
}

@keyframes AnimationName {

    0%,
    to {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}