.myDiv {
  text-align: center;
}
.waviy {
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
  font-size: 20px;
}
.waviy span {
  font-family: Share Tech Mono;
  position: relative;
  display: inline-block;
  color: transparent;
  text-shadow: -2px -2px 2px rgba(255,255,255,1),
                1px 1px 1px rgba(0,0,0,0.9),
                2px -2px 4px rgba(255,255,255,1),
                -2px -2px 2px rgba(0,0,0,0.9),
                -2px 2px 1px rgba(0,0,0,0.9);
  -webkit-text-stroke:2px rgba(0,0,0,0.4);
  text-transform: uppercase;
  animation: waviy 15s infinite;
  animation-delay: calc(.15s * var(--i));
  
}
.waviy a {
  color: #ffffff;
  text-align: center;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
  font-size: 20px;
  opacity:.6;
}
@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-5px)
  }
}
