div {
  position: absolute;
  top: 35%;
  width: 100%;
}

p {
  color: #FF8A5D;
  font-family: "Arial", sans-serif;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-align: center;
  text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.3);
}
p em {
  font-style: normal;
  display: inline-block;
}
p em:nth-child(1) {
  color: #1fc4b3;
}
p em:nth-child(2) {
  color: #4ad8bc;
}
p em:nth-child(3) {
  color: #c8cf02;
}
p em:nth-child(4) {
  color: #f1db42;
}
p em:nth-child(5) {
  color: #fff;
}
p em:nth-child(6) {
  color: #f57576;
}
p em.bounce-me {
  -webkit-animation: bounce 6s infinite ease-in-out;
  animation: bounce 6s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  60% {
    -webkit-transform: translate(0px, -200px) scale(1.2);
    opacity: 0.8;
    text-shadow: 0px 150px 20px rgba(0, 0, 0, 0.8);
  }
}
@keyframes bounce {
  60% {
    -webkit-transform: translate(0px, -200px) scale(1.2);
    opacity: 0.8;
    text-shadow: 0px 150px 20px rgba(0, 0, 0, 0.8);
  }
}
