.animated-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 200%;
  height: 200%;
  background-image: url("../images/background-aunLqkN.svg");
  background-repeat: repeat;
  background-size: cover;
  z-index: -1;

  animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(50%, -50%);
  }
}

@media (max-width: 768px) {
  .animated-bg {
    animation-duration: 90s;
  }
}