@import url(https://fonts.googleapis.com/css?family=Montserrat);
.wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.text {
  color: #545454;
  font-size: 45px;
  display: inline-block;
  margin-left: 5px;
  font-family: Montserrat,  Arimo; }

.text1 {
  font-size: 20px; }

.bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px; }
  .bounceball:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #4ac5a6;
    transform-origin: 50%;
    animation: bounceBall 500ms alternate infinite ease; }

@keyframes bounceBall {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    transform: scaleX(2); }
  35% {
    height: 15px;
    border-radius: 50%;
    transform: scaleX(1); }
  100% {
    top: 0; } }
