
.bounce {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
	color: white;
  height: 100%;
  font-size: 20px;
  white-space: nowrap;
}

.letter {
  animation: bounce 0.75s cubic-bezier(0.05, 0, 0.2, 1) infinite alternate;
  display: inline-block;
  transform: translate3d(0, 0, 0);
  margin-top: 0.5em;
  text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
 
}
.letter:nth-child(1) {
  animation-delay: 0s;
}
.letter:nth-child(2) {
  animation-delay: 0.08s;
}
.letter:nth-child(3) {
  animation-delay: 0.16s;
}
.letter:nth-child(4) {
  animation-delay: 0.25s;
}
.letter:nth-child(5) {
  animation-delay: 0.33s;
}
.letter:nth-child(6) {
  animation-delay: 0.41s;
}
.letter:nth-child(8) {
  animation-delay: 0.50s;
}
.letter:nth-child(9) {
  animation-delay: 0.58s;
}
.letter:nth-child(11) {
  animation-delay: 0.66s;
}
.letter:nth-child(12) {
  animation-delay: 0.74s;
}
.letter:nth-child(13) {
  animation-delay: 0.81s;
}

.letter:nth-child(15) {
  animation-delay: 0.97s;
}
.letter:nth-child(17) {
  animation-delay: 1.05s;
}
.letter:nth-child(18) {
  animation-delay: 1.13s;
}
.letter:nth-child(19) {
  animation-delay: 1.21s;
}
.letter:nth-child(20) {
  animation-delay: 1.29s;
}
.letter:nth-child(21) {
  animation-delay: 1.37s;
}







@keyframes bounce {
  0% {
    transform: translate3d(0, 0, 0);
    text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
  }
  100% {
    transform: translate3d(0, -1em, 0);
    text-shadow: rgba(255, 255, 255, 0.4) 0 1em 0.35em;
  }
}
