body {
  background: url("/images/mainbg.jpg");
  animation: bgiLoop 15s linear infinite;
}

@keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -256px 256px;
  }
}

.animation_stop {
  animation: none;
}