.footer {
    background-color: #020920;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient-background {
  height: auto;
  background: linear-gradient(270deg, #020920, #435d6a, #20204c);
  background-size: 600% 600%;
  animation: gradientAnimation 20s ease infinite;
}



@keyframes gradientAnimation-1 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient-background-1 {
  height: auto;
  background: linear-gradient(270deg, #893A7A, #237daf, #20204c);
  background-size: 600% 600%;
  animation: gradientAnimation-1 20s ease infinite;
}