.wavy
{
	position: relative;
	-webkit-box-reflect: below -12px ( transparent, rgba(0,0,0,0.2));
}

.wavy span
{
	position: relative;
	display: inline-block;
	color: #000bcc;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
	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);
	}

}