/* Cool infinite background scrolling animation.
 * Twitter: @kootoopas
 */
/* Animations */
@-webkit-keyframes bg-scrolling-reverse {
  100% {
    background-position: 2250px 1500px;
  }
}
@-moz-keyframes bg-scrolling-reverse {
  100% {
    background-position: 2250px 1500px;
  }
}
@-o-keyframes bg-scrolling-reverse {
  100% {
    background-position: 2250px 1500px;
  }
}
@keyframes bg-scrolling-reverse {
  100% {
    background-position: 2250px 1500px;
  }
}
@-webkit-keyframes bg-scrolling {
  0% {
    background-position: 2250px 1500px;
  }
}
@-moz-keyframes bg-scrolling {
  0% {
    background-position: 2250px 1500px;
  }
}
@-o-keyframes bg-scrolling {
  0% {
    background-position: 2250px 1500px;
  }
}
@keyframes bg-scrolling {
  0% {
    background-position: 2250px 1500px;
  }
}
/* Main styles */
body {
  background: url("https://jarrodmakin.com/pokemon/silhouettes/pngs/bg-sinnoh.png") repeat 0 0;
  -webkit-animation: bg-scrolling-reverse 20s infinite;
  /* Safari 4+ */
  -moz-animation: bg-scrolling-reverse 20s infinite;
  /* Fx 5+ */
  -o-animation: bg-scrolling-reverse 20s infinite;
  /* Opera 12+ */
  animation: bg-scrolling-reverse 20s infinite;
  /* IE 10+ */
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
