body {
  background: linear-gradient(
    -45deg,
    #868ff2,
    #8c86ee,
    #6a51c8,
    #6f50c6,
    #5564cf,
    #2a44b1,
    #1a41ad
  );
  background-size: 400% 400%;
  animation: gradient 9s ease infinite;
  height: 100vh;
  font-family: "the-seasons", sans-serif;
  font-style: normal;
}

h1 {
  font-size: 4em;
  font-weight: 700;
}


.fw-400 {
  font-weight: 400;
}



@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}