.animation {
  height: 5rem;
  overflow: hidden;
  /*margin-left: 1rem;*/
  color: #fff;
  /*border: 1px solid red;*/
  position: relative;
  z-index: 1;
}

.animation > div > p {
  padding: 0;
  height: 5rem;
  margin: 0;
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
}

.animation div:first-child {
  animation: text-animation 8s infinite;
}

.first p {
  /*background-color: #20a7d8;*/
}

.second p {
  /*background-color: #CD921E;*/
}

.third p {
  /*background-color: #c10528;*/
}

@keyframes text-animation {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: -5.75rem;
  }
  40% {
    margin-top: -11rem;
  }
  60% {
    margin-top: -16rem;
  }
  80% {
    margin-top: -21rem;
  }
  100% {
    margin-top: 0;
  }
}

