/* CSS for the footer background animation */
@keyframes backgroundChange {
    0% {
        background-color: #221b41;
    }
    50% {
        background-color: #0e211c;
    }
    100% {
        background-color: #221b41;
    }
}

.animated-background {
    animation: backgroundChange 30s infinite;
    animation-timing-function: ease-in-out;

}