html {
  font-family: 'open-sans', sans-serif;
  background-color: #212528;
  color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

#water-logo {
  -webkit-filter: url("#goo");
  filter: url("#goo");
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#blob {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  line-height: 150px;
  font-size: 5em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -75px;
  margin-left: -75px;
  background-color: #5fb3f9;
  -webkit-animation: blob 6s infinite;
  -moz-animation: blob 6s infinite;
  -o-animation: blob 6s infinite;
  animation: blob 6s infinite;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  z-index: 2;
}

#drops {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  margin-left: -30px;
  border-radius: 50%;
}

.falling {
  background-color: #5fb3f9;
  top: -10%;
  margin-top: -200px;
  -webkit-animation: falling 6s infinite;
  -moz-animation: falling 6s infinite;
  -o-animation: falling 6s infinite;
  animation: falling 6s infinite;
}

.dropping {
  background-color: #5fb3f9;
  top: 50%;
  margin-top: -20px;
  -webkit-animation: dropping 6s infinite;
  -moz-animation: dropping 6s infinite;
  -o-animation: dropping 6s infinite;
  animation: dropping 6s infinite;
}

.cred {
  font-size: 8pt;
  color: #666464;
  ;
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
}

.teal {
  color: #5fb3f9 !important;
}

.orange {
  background-color: #f54364 !important;
}

@-webkit-keyframes falling {
  10%, 100% {
    margin-top: -15px;
    top: 45%;
  }
}

@-webkit-keyframes dropping {
  10% {
    -webkit-transform: scale(0.85);
  }
  60% {
    top: 50%;
    -webkit-transform: translate(0px, 110px) scale(1.2, 1.3);
  }
  80% {
    -webkit-transform: scale(0.95, 1.1);
  }
  100% {
    top: 200%;
  }
}

@-webkit-keyframes blob {
  0%, 7% {
    -webkit-transform: scale(1.0);
  }
  12% {
    -webkit-transform: scale(1.2);
  }
  70% {
    -webkit-transform: scale(0.95)
  }
  100% {
    -webkit-transform: scale(1.0);
  }
}

@keyframes falling {
  10%, 100% {
    margin-top: -15px;
    top: 45%;
  }
}

@keyframes dropping {
  10% {
    transform: scale(0.85);
  }
  60% {
    top: 50%;
    transform: translate(0px, 110px) scale(1.2, 1.3);
  }
  80% {
    transform: scale(0.95, 1.1);
  }
  100% {
    top: 200%;
  }
}

@keyframes blob {
  0%, 7% {
    transform: scale(1.0);
  }
  12% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.95)
  }
  100% {
    transform: scale(1.0);
  }
}