/*
Theme Name: Mark Ussher Architects
Theme URI:
Description: Custom theme for Mark Ussher Architects by the hideously clever Brand Candy crew.
Author: Robin Devitt @ Brand Candy
Author URI: http://www.brandcandy.co.za
Version: 2.0.1
License:
License URI:
Text Domain: brandcandy
*/
/*-- Want to add custom stuff? 
---- Do so below
---- Go WILD with !important tags ---*/
.bounce {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    60% {
      transform: translateY(-15px);
    }
  }