/* From codepen.io by Octavector */

body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  overflow: hidden;
}

.scrollTxt {
  position: absolute;
  bottom: -12vw;
  right: 1%;
  z-index: -1;
  animation-name: scroll;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.scrollTxt p {
  color: #ffc5e3;
  opacity: 0.6;
  font-family: 'Codystar', sans-serif;
  font-size: 6vw;
  text-transform: uppercase;
  line-height: 0;
  text-align: right;
}

@keyframes scroll {
  from {
    transform: ;
  }
  to {
    transform: translateY(66vw);
  }
}

/*mobile */

@media (orientation: portrait) {

.scrollTxt {
  opacity: 0.8;
  font-size: 7vw;
  
  }

}