/* https://gist.github.com/davidsharp/a2cc3c8988dbfb8e5d291d1d084396cf */
.jump {
  display: inline-block;
  animation-duration: 1.5s;
  animation-name: jump;
  animation-iteration-count: infinite;
  margin:-1px;
}
#tutorialmaker{
    margin-left:10px;
}
.jump.delay-1 {animation-delay: .1s;}
.jump.delay-2 {animation-delay: .2s;}
.jump.delay-3 {animation-delay: .3s;}
.jump.delay-4 {animation-delay: .4s;}
.jump.delay-5 {animation-delay: .5s;}
.jump.delay-6 {animation-delay: .6s;}
.jump.delay-7 {animation-delay: .7s;}
@keyframes jump {
  0%, 100% {
    transform: scale(1.1,1) translateY(0);
  }
  
  5% {
    transform: scale(1,1) translateY(-.4em);
  }

  15% {
    transform: scale(1.1,.9) translateY(-.5em);
  }
  
  25% {
    transform: scale(1,1) translateY(-.4em);
  }
  
  30% {
    transform: scale(1,1) translateY(0);
  }
}