/* BOUNCE ANIMATION */
.bounce { -webkit-animation:bounce 1s infinite; }
    
@-webkit-keyframes bounce {
  0%       { bottom:5px; }
  25%, 75% { bottom:15px; }
  50%      { bottom:20px; }
  100%     {bottom:0;}
}