/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

a:link, a:visited {
  color: white;
}
a:hover, a:active {
  color: #d0f1fc;
}
.container {
  overflow: hidden;
}

body {
  background: url("scrollingbg.png");
  background-size: 10%;
          animation: pan 60s linear infinite;
           -webkit-animation: pan 60s linear infinite;
}

@-webkit-keyframes pan {
    from { background-position: 0 0; }
    to { background-position: 100% 0; }
}
@keyframes pan {
    from { background-position: 0 0; }
    to { background-position: 100% 0; }
} 