#background-wrap {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -9999;
}

/* KEYFRAMES */
@-webkit-keyframes animateBubble {
  0% {
    margin-top: 100vh;
  }
  100% {
    margin-top: 0;
  }
}

@keyframes animateBubble {
  0% {
    margin-top: 100vh;
  }
  100% {
    margin-top: 0%;
  }
}

@-webkit-keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}

@keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}

/* ANIMATIONS */
.x1 {
  -webkit-animation: animateBubble 5s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 5s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: -5%;
  top: 5%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
}

.x2 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 5%;
  top: 80%;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
}

.x3 {
  -webkit-animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 28s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 10%;
  top: 40%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
}

.x4 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 20%;
  top: 0;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
}

.x5 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 30%;
  top: 50%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.x6 {
  -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 50%;
  top: 0;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
}

.x7 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 65%;
  top: 70%;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
}

.x8 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 80%;
  top: 10%;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
}

.x9 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 90%;
  top: 50%;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

.x10 {
  -webkit-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 80%;
  top: 80%;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
}

/* OBJECTS */
.bubble {
  border-radius: 50%;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 10px 30px 5px rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 10px 30px 5px rgba(255, 255, 255, 0.5);
  height: 200px;
  position: absolute;
  width: 200px;
}

.bubble:after {
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 12+ */
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  border-radius: 50%;
  -webkit-box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.3);
  content: "";
  height: 180px;
  left: 10px;
  position: absolute;
  width: 180px;
}

#octocat {
  height: 300px;
  width: 200px;
  background: url(https://codinhood.com/static/9a146dac647e7129fa173acc0b0d437f/299c1/octocat.png) left center;
  -webkit-animation: animateSprite 15s steps(1) infinite, swim 15s ease-in-out infinite;
          animation: animateSprite 15s steps(1) infinite, swim 15s ease-in-out infinite;
  position: absolute;
  right: -200px;
  top: 50%;
  margin-top: -150px;
  z-index: 100;
}

@-webkit-keyframes animateSprite {
  0% {
    background-position: -600px;
    /* Starting position moving left sprite */
  }
  20% {
    background-position: 0px;
    /* Straight on sprite */
  }
  25% {
    background-position: -200px;
    /* Moving up sprite */
  }
  35% {
    background-position: -400px;
    /* Moving right sprite */
  }
  40% {
    background-position: -400px;
  }
  50% {
    background-position: -200px;
    /* Moving up sprite */
  }
  60% {
    background-position: -0px;
    /* Straight on sprite */
  }
  67% {
    background-position: -600px;
    /* Moving up sprite */
  }
  100% {
    background-position: -600px;
  }
}

@keyframes animateSprite {
  0% {
    background-position: -600px;
    /* Starting position moving left sprite */
  }
  20% {
    background-position: 0px;
    /* Straight on sprite */
  }
  25% {
    background-position: -200px;
    /* Moving up sprite */
  }
  35% {
    background-position: -400px;
    /* Moving right sprite */
  }
  40% {
    background-position: -400px;
  }
  50% {
    background-position: -200px;
    /* Moving up sprite */
  }
  60% {
    background-position: -0px;
    /* Straight on sprite */
  }
  67% {
    background-position: -600px;
    /* Moving up sprite */
  }
  100% {
    background-position: -600px;
  }
}

@-webkit-keyframes swim {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    /* Starting position */
  }
  20% {
    -webkit-transform: translate(calc(-50vw - 100px), 0);
            transform: translate(calc(-50vw - 100px), 0);
    /* Animate to center of screen */
  }
  25% {
    -webkit-transform: translate(calc(-50vw - 100px), 0);
            transform: translate(calc(-50vw - 100px), 0);
    /* Stay at the center for 1 second */
  }
  35% {
    -webkit-transform: translate(calc(-50vw - 100px), -20vh);
            transform: translate(calc(-50vw - 100px), -20vh);
    /* Animate up for 2 seconds */
  }
  50% {
    -webkit-transform: translate(-25vw, 15vh);
            transform: translate(-25vw, 15vh);
    /* Animate bottom right for 3 seconds */
  }
  60% {
    -webkit-transform: translate(-25vw, -20vh);
            transform: translate(-25vw, -20vh);
    /* Animate up at right of the screen */
  }
  67% {
    -webkit-transform: translate(-25vw, -20vh);
            transform: translate(-25vw, -20vh);
  }
  100% {
    -webkit-transform: translate(calc(-100vw - 300px), 0);
            transform: translate(calc(-100vw - 300px), 0);
    /* Animate past left past the screen */
  }
}

@keyframes swim {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    /* Starting position */
  }
  20% {
    -webkit-transform: translate(calc(-50vw - 100px), 0);
            transform: translate(calc(-50vw - 100px), 0);
    /* Animate to center of screen */
  }
  25% {
    -webkit-transform: translate(calc(-50vw - 100px), 0);
            transform: translate(calc(-50vw - 100px), 0);
    /* Stay at the center for 1 second */
  }
  35% {
    -webkit-transform: translate(calc(-50vw - 100px), -20vh);
            transform: translate(calc(-50vw - 100px), -20vh);
    /* Animate up for 2 seconds */
  }
  50% {
    -webkit-transform: translate(-25vw, 15vh);
            transform: translate(-25vw, 15vh);
    /* Animate bottom right for 3 seconds */
  }
  60% {
    -webkit-transform: translate(-25vw, -20vh);
            transform: translate(-25vw, -20vh);
    /* Animate up at right of the screen */
  }
  67% {
    -webkit-transform: translate(-25vw, -20vh);
            transform: translate(-25vw, -20vh);
  }
  100% {
    -webkit-transform: translate(calc(-100vw - 300px), 0);
            transform: translate(calc(-100vw - 300px), 0);
    /* Animate past left past the screen */
  }
}
/*# sourceMappingURL=animation.css.map */