body {
    font-family: 'Fredoka', sans-serif;
    background: radial-gradient(circle at center, #FFD166, #FF6EC7, #FFB703);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: animatedBackground 1 ease infinite;
    color: #fff;
  }

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