@keyframes bg-keyframe {
  from {
    background-position: 0 100%;
  }

  to {
    background-position: 0 0;
  }
}

.sScreenBg {
  animation: bg-keyframe 10s linear infinite alternate;
}
