body {
  margin: 0;
}

.wrapper {
  position: relative;
  width: 100svw;
  min-height: 100svh;
  max-height: 100svh;
  overflow: clip;
}

.inner {
  position: absolute;
  animation: auto-scroll 30s linear both;
  width: 100%;
  text-align: center;
}

@keyframes auto-scroll {
  0% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(-90%);
  }
}/*# sourceMappingURL=/assets/endroll-c6459ea1.css.map */