@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
body {
  background-image: url('https://myspace.f46n.org/res/discord/attachments/1054838229502808115/1165689668428378112/Captura_de_tela_de_2023-10-22_13-33-52.png?ex=6550fe9a&is=653e899a&hm=67a433f4fd01bccdfdd4b64d69042c5e2177a16459123c9adb17762bead1c024&');
  background-repeat: repeat-x;
  animation: moveBackground 10s linear infinite;
}