@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gradient {
  --size: 500px;
  --speed: 50s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(hsl(271, 100%, 50%), hsl(216, 100%, 57%));
  animation: rotate var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  -webkit-filter: blur(calc(var(--size) / 4));
}

@media (min-width: 720px) {
  .gradient {
    --size: 500px;
  }
}
/* This is just to transition when you change the viewport size. */
* {
  transition: all 0.25s ease-out;
}/*# sourceMappingURL=animation.css.map */