:root {
  --x: 0;
  --y: 0;
  --xOffset: 0px;
  --yOffset: 0px;
}

body {
  background-color: #282c34;
  text-align: center;
}

.content {
  color: white;
  padding-bottom: 64px;
  padding-top: 64px;
  text-align: center;
  width: 100%;
}

#box {
  background-image: url("./images/logo-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 512px;
  height: 512px;
  position: relative;
  margin: auto;
  padding: 0;
}

#bottle {
  width: 512px;
  height: 512px;
  position: relative;
  margin: auto;
  top: 0px;
}

#bottle-back {
  width: 512px;
  height: 512px;
  position: relative;
  margin: auto;
  top: 0px;
  display: none;
}

#bottle-frown {
  width: 512px;
  height: 512px;
  position: relative;
  margin: auto;
  top: 0px;
  display: none;
}

#bottle-side {
  width: 512px;
  height: 512px;
  position: relative;
  margin: auto;
  top: 0px;
  display: none;
}

.animateBottleWalk {
  -webkit-animation-name: animateBottleWalk;
          animation-name: animateBottleWalk;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes animateBottleWalk {
  0% {
    left: 0;
  }
  100% {
    left: -1024px;
  }
}

@keyframes animateBottleWalk {
  0% {
    left: 0;
  }
  100% {
    left: -1024px;
  }
}

.animateBottleWalk2 {
  -webkit-animation-name: animateBottleWalk2;
          animation-name: animateBottleWalk2;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes animateBottleWalk2 {
  0% {
    position: relative;
    width: 512px;
    height: 512px;
    top: 0px;
    opacity: 1;
  }
  10% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  20% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  90% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    position: relative;
    width: 50px;
    height: 50px;
    top: 256px;
    opacity: 0;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes animateBottleWalk2 {
  0% {
    position: relative;
    width: 512px;
    height: 512px;
    top: 0px;
    opacity: 1;
  }
  10% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  20% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  90% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    position: relative;
    width: 50px;
    height: 50px;
    top: 256px;
    opacity: 0;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

#pupils {
  background-image: url("./images/pupils.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: var(--yOffset);
  left: var(--xOffset);
  width: 512px;
  height: 512px;
  z-index: 1 !important;
}

#pupil-side {
  background-image: url("./images/pupil-side.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: var(--yOffset);
  left: var(--xOffset);
  width: 512px;
  height: 512px;
  z-index: 1 !important;
  display: none;
}

#logo-text {
  background-image: url("./images/logo-text.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 512px;
  height: 512px;
  position: absolute;
  top: 0;
  left: 0;
}

#greeting {
  position: relative;
  width: 100%;
  /*top: 544px;*/
}

#message {
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  display: none;
}

#reset {
  display: none;
  font-size: 1.5em;
  position: relative;
  width: 100%;
  left: 0;
  top: 560px;
}

#copyright {
  position: relative;
  /*top: 550px;*/
  opacity: 0.5;
  width: 100%;
}
/*# sourceMappingURL=styles.css.map */