@import 'https://fonts.googleapis.com/css?family=Rubik+Mono+One';

.words0 {
  position:relative;
  color: white;
  font-size: 80px;
  text-align: center;
  height:auto;
  top:10%;
}
.words0 span {
  font-size: 120px;
  display: inline-block;
  animation: move 3.5s ease-in-out infinite;
}
.words0 span:nth-child(2) {
  animation-delay: 0.9s;
}
.words0 span:nth-child(3) {
  animation-delay: 0.3s;
}
.words0 span:nth-child(4) {
  animation-delay: 1.1s;
}

.words1 {
  position:relative;
  color: white;
  font-size: 100px;
  text-align: center;
  height:auto;
  top:40%;
}
.words1 span {
  font-size: 120px;
  display: inline-block;
  animation: move 2s ease-in-out infinite;
}
.words1 span:nth-child(2) {
  animation-delay: 0.4s;
}
.words1 span:nth-child(3) {
  animation-delay: 0.8s;
}
.words1 span:nth-child(4) {
  animation-delay: 1.3s;
}

.words2 {
  position:relative;
  color: white;
  font-size: 180px;
  text-align: right;
  top:30%;
  height:auto;
  right:20px;
}

.words2 span {
  font-size: 120px;
  display: inline-block;
  animation: move 2.5s ease-in-out infinite;
}
.words2 span:nth-child(2) {
  animation-delay: 0.5s;
}
.words2 span:nth-child(3) {
  animation-delay: 0.6s;
}
.words2 span:nth-child(4) {
  animation-delay: 1.3s;
}

.words3 {
  position:relative;
  color: white;
  font-size: 180px;
  text-align: left;
  top:20%;
  height:auto;
  left:20px;
}

.words3 span {
  font-size: 160px;
  display: inline-block;
  animation: move 3s ease-in-out infinite;
}
.words3 span:nth-child(2) {
  animation-delay: 1.1s;
}
.words3 span:nth-child(3) {
  animation-delay: 0.8s;
}
.words3 span:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes move {
  0% {
    transform: translate(-25%, 0);
  }
  50% {
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
  100% {
    transform: translate(33%, 0);
  }
}