.noPadding{
   padding: 0% !important;
}
.spanClass{
    font-size: 8vh;
    font-weight: bold;
    color: black;
}
.divClass{
    margin-top: 10vh;
    margin-left: 5vw;
}
.animate span {
    display: inline-block;
  }
  .animate span:nth-of-type(2) {
    animation-delay: .05s;
  }
  .animate span:nth-of-type(3) {
    animation-delay: .1s;
  }
  .animate span:nth-of-type(4) {
    animation-delay: .15s;
  }
  .animate span:nth-of-type(5) {
    animation-delay: .2s;
  }
  .animate span:nth-of-type(6) {
    animation-delay: .25s;
  }
  .animate span:nth-of-type(7) {
    animation-delay: .3s;
  }
  .animate span:nth-of-type(8) {
    animation-delay: .35s;
  }
  .animate span:nth-of-type(9) {
    animation-delay: .4s;
  }
  .animate span:nth-of-type(10) {
    animation-delay: .45s;
  }
  .animate span:nth-of-type(11) {
    animation-delay: .5s;
  }
  .two span {
    color: #a5cb21;
    transform: translate(200px, -100px) scale(2);
    animation: ballDrop .5s forwards;
  }
  
  @keyframes ballDrop {
    60% {
      transform: translate(0, 30px) rotate(-270deg) scale(.10);
    }
  
    100% {
      transform: translate(0) rotate(0deg) scale(1);
      opacity: 1;
    }
  }
  body
{
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #999999;
  word-wrap:break-word;
}
  /* a.repeat {
    display: inline-block;
    font-size: 12px;
    text-transform: none;
    text-decoration: none;
    color: orange;
    padding: 5px 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-weight: normal;
    margin: 0 0 0 50px;
    border-radius: 3px;
    position: relative;
    bottom: 15px;
  }   */