.rotatingText {
  align-items: center;
  display: flex;
  height: 100vh;
  text-align: center;
  color: Yellow;
}

.rotatingText-content {
  position: relative;
  width: 100%;
}

.rotatingText-description {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 14px;
  margin: 0;
}
@media (min-width: 768px) {
  .rotatingText-description {
    font-size: 18px;
  }
}

.rotatingText-adjective {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  left: 0;
  margin-bottom: 0;
  margin-top: 30px;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}
@media (min-width: 768px) {
  .rotatingText-adjective {
    font-size: 70px;
  }
}
.rotatingText-adjective:nth-of-type(1) {
  -webkit-animation: rotate-text-up 1.5s 0.75s;
          animation: rotate-text-up 1.5s 0.75s;
}
.rotatingText-adjective:nth-of-type(2) {
  -webkit-animation: rotate-text-up 1.5s 2s;
          animation: rotate-text-up 1.5s 2s;
}
.rotatingText-adjective:nth-of-type(3) {
  -webkit-animation: rotate-text-up 1.5s 3.5s;
          animation: rotate-text-up 1.5s 3.5s;
}
.rotatingText-adjective:nth-of-type(4) {
  -webkit-animation: rotate-text-up 1.5s 5s;
          animation: rotate-text-up 1.5s 5s;
}
.rotatingText-adjective:nth-of-type(5) {
  -webkit-animation: rotate-text-up 1.5s 6.5s;
          animation: rotate-text-up 1.5s 6.5s;
}
.rotatingText-adjective:nth-of-type(6) {
  -webkit-animation: rotate-text-up 1.5s 8s;
          animation: rotate-text-up 1.5s 8s;
}
.rotatingText-adjective:nth-of-type(7) {
  -webkit-animation: rotate-text-up 1.5s 9.5s;
          animation: rotate-text-up 1.5s 9.5s;
}
.rotatingText-adjective:nth-of-type(8) {
  -webkit-animation: rotate-text-up 1.5s 11s;
          animation: rotate-text-up 1.5s 11s;
}
.rotatingText-adjective:nth-of-type(9) {
  -webkit-animation: rotate-text-up 1.5s 12.5s;
          animation: rotate-text-up 1.5s 12.5s;
}
.rotatingText-adjective:nth-of-type(10) {
  -webkit-animation: rotate-text-up 1.5s 14s;
          animation: rotate-text-up 1.5s 14s;
}
.rotatingText-adjective:nth-of-type(11) {
  -webkit-animation: fade-text-in 1.5s 15.5s;
          animation: fade-text-in 1.5s 15.5s;
}
.rotatingText-adjective:nth-of-type(12) {
  -webkit-animation: fade-text-in 1.5s 17s;
          animation: fade-text-in 1.5s 17s;
}
.rotatingText-adjective:nth-of-type(13) {
  -webkit-animation: fade-text-in 1.5s 18.5s forwards;
          animation: fade-text-in 1.5s 18.5sforwards;
}


@-webkit-keyframes rotate-text-up {
  0% {
    transform: translate3d(0, 80px, 0);
    opacity: 0;
  }
  20%, 80% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -40px, 0);
    opacity: 0;
  }
}

@keyframes rotate-text-up {
  0% {
    transform: translate3d(0, 80px, 0);
    opacity: 0;
  }
  20%, 80% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -40px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fade-text-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  50%, 100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-text-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  50%, 100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.twitter {
  bottom: 0;
  position: fixed;
  right: 0;
  width: 50px;
}