*
{
	margin: 0;
	padding: 0;
	font-family: Times;
}
.wavy
{
    position: relative;
    -webkit-box-reflect: below -10px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}
.wavy span
{
  position: relative;
  display: inline-block;
  color: #f5eb3b;
  font-size: 2em;
  text-transform: uppercase;
  animation: animate 1s ease-in-out infinite;
  animation-delay: calc(0.1s * var(--i));
}
@keyframes animate
{
  0%
  {
  	transform: translateY(0px);
  }
  20%
  {
  	transform: translateY(-20px);
  }
  40%,100%
  {
  	transform: translateY(0px);
  }
    
}