@font-face {
  font-family: 'Kiwi';
  src: url('https://duckoatmeal.neocities.org/KiwiSoda.ttf') format('truetype')
}

h1 {
  font-family: 'Kiwi';
  font-size: 100px;
  font-weight: 80;
  text-align: center;
}

.jumping-text span {
  color: #5aa7a5;
  display: inline-block;
  font-size: 5rem;
  animation: jump 1s ease-in-out infinite;
}

/* the jump animation */
@keyframes jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
/* jumping text */
.jump-text span:nth-child(2) { animation-delay: 0.1s; }
.jump-text span:nth-child(3) { animation-delay: 0.2s; }
.jump-text span:nth-child(4) { animation-delay: 0.3s; }