@import url('tachyons.min.css');
@import url('vhs.min.css');

.sticky {
  position: sticky;
}

@media screen and (min-width: 30em) {
  .sticky-ns {
    position: sticky;
  }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
  .sticky-m {
    position: sticky;
  }
}

@media screen and (min-width: 60em) {
  .sticky-l {
    position: sticky;
  }
}

.font-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#track {
  
}

.paused {
  animation-play-state: paused !important;
}

.running {
  animation: slide 10s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 0 1000%; }
}