.anime-background {
    width: 100%;
    height: 100%;
    position: fixed;
    background: linear-gradient(132deg, rgba(255,171,87,1) 0%, rgba(234,125,16,1) 30%, rgba(180,53,13,1) 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%;
    }
  }