.wavy {
    animation-name: wavy;
    animation-duration: 1.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    position: relative;
    top: 0;
    left: 0;
  }
  @keyframes wavy {
    0% {
      top: 0px;
      left: 0px;
    }
    33% {
      left: -2px;
    }
    50% {
      top: -6px;
    }
    67% {
      left: 2px
    }
    100% {
      top: 0px;
      left: 0px;
  }
}