.anime-background {
    width: 100%;
    height: 100%;
    position: fixed;
    background: linear-gradient(287deg, rgb(87 119 255) 0%, rgb(16 128 234) 30%, rgb(131 13 180) 100%);
    background-size: 400% 400%;
    animation: animeGradient 10s ease infinite;
  }

  @keyframes animeGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }