@keyframes moveStars {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 1000px;
  }
}

body {
  background: url('background.png') no-repeat center center fixed !important;
  background-size: cover !important;
  animation: moveStars 120s linear infinite !important;
}
