/*Animations*/
/*Animations -> Wave*/
.animation-wavy {
  animation-name: wavy;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: relative;
  top: 0;
}
@keyframes wavy {
  0% {
    top: 0px;
  }
  20% {
    top: -1rem;
  }
  40% {
    top: 0px;
  }
}

/*Animations -> Typewriter*/
.animation-typewriter {
  visibility: hidden;
  position: relative;
}
.animation-typewriter > i {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  background: white;
  border-radius: 50%;
  opacity: 1;
  transition: 1s all ease-in-out;
}

/*Animations -> Fade*/
.animation-fade {
  opacity: 0 !important;
}
