body {
  margin: 0;
  padding: 0;
  background: #04142B;
  font-family: "Ubuntu", sans-serif;
  color: #ffffff;
  font-weight: 300;
}
.wrapper {
  min-height: 100vh;
  max-height: 100vh;
  height: 100%;
  width: 100%;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  padding-bottom: 120px;
  line-height: 100vh;
}
.wrapper:before {
  content: "";
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.main-text {
  font-size: 25px;
  line-height: 1.2em;
  max-width: 544px;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}
.hello {
  font-size: 70px;
  line-height: 1.4em;
}
.button {
  font-size: 17px;
  color: #ffffff;
  text-decoration: none;
  outline: none;
  display: inline-block;
  margin-top: 30px;
  border: 1px solid #ffffff;
  padding: 4px 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.logo {
  float: right;
}
.slogan {
  float: left;
  font-family: "Roboto", sans-serif;
  line-height: 60px;
}
.vertical-center {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-top: -120px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  padding: 30px 35px;
}
.gears {
  width: 248px;
  height: 178px;
  display: inline-block;
  position: relative;
}
.gears .big-gear {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: ClockWise 18.74s linear 0s;
  -moz-animation: ClockWise 18.74s linear 0s;
  animation: ClockWise 18.74s linear 0s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
.gears .small-gear {
  position: absolute;
  bottom: -1px;
  right: -1px;
  -webkit-animation: CounterClockWise 10s linear 0s;
  -moz-animation: CounterClockWise 10s linear 0s;
  animation: CounterClockWise 10s linear 0s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
@-webkit-keyframes ClockWise {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
  }
}
@-moz-keyframes ClockWise {
  0% {
    -moz-transform: rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateZ(-360deg);
  }
}
@keyframes ClockWise {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@-webkit-keyframes CounterClockWise {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}
@-moz-keyframes CounterClockWise {
  0% {
    -moz-transform: rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateZ(360deg);
  }
}
@keyframes CounterClockWise {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@media screen and (max-width: 767px) {
  .logo,
  .slogan {
    float: none;
    display: block;
  }
  .footer {
    min-height: 120px;
    height: auto;
  }
}
