@keyframes gradientBG {
    0%, 100% {
        background-color: #dbeafe70;
    }
    50% {
        background-color: #dbeafe;
    }
}


.animated-gradient {
    -webkit-animation: gradientBG 2s ease infinite;
    -moz-animation: gradientBG 2s ease infinite;
    animation: gradientBG 2s ease infinite;
}
