* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.waviy {
  position: relative;
}
.waviy span {
  position: relative;
  display: inline-block;
  font-family: monospace, Helvetica, Arial, Sans-Serif;
  font-size: 100px;
  color: #fff;
  text-transform: lowercase;
  animation: flip 10s infinite;
  animation-delay: calc(0.9s * var(--i));
}
@keyframes flip {
  0%,
  80% {
    transform: rotateY(720deg);
  }
}
.waviys span {
  position: relative;
  display: inline-block;
  font-family: monospace, Helvetica, Arial, Sans-Serif;
  font-size: 100px;
  color: #fff;
  text-transform: lowercase;
  animation: flips 10s infinite;
  animation-delay: calc(0.9s * var(--i));
}
@keyframes flips {
  0%,
  80% {
    transform: rotateX(720deg);
  }
}
.waviyd span {
  position: relative;
  display: inline-block;
  font-family: monospace, Helvetica, Arial, Sans-Serif;
  font-size: 100px;
  color: #fff;
  text-transform: lowercase;
  animation: flipd 10s infinite;
  animation-delay: calc(0.9s * var(--i));
}
@keyframes flipd {
  0%,
  80% {
    transform: rotateZ(720deg);
  }
}