* {
  font-family: 'Open Sans', sans-serif;
  color: whitesmoke;
  margin: 0;
  padding: 0;
}

html,
body,
.container {
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.container {
  background-color: #8200ed;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #8200ed), to(#cce7ff));
  background: linear-gradient(to bottom, #8200ed 1%, #cce7ff 100%);
}

#cloud-intro {
  position: relative;
  height: 100%;
  background: url(https://static.radulescu.me/examples/clouds/clouds1000.png);
  background: url(https://static.radulescu.me/examples/clouds/clouds1000.png) 0 200px, url(https://static.radulescu.me/examples/clouds/clouds1200_1.png) 0 300px, url(https://static.radulescu.me/examples/clouds/clouds1000_blur3.png) 100px 250px;
  -webkit-animation: wind 20s linear infinite;
          animation: wind 20s linear infinite;
}

@-webkit-keyframes wind {
  0% {
    background-position: 0 200px, 0 300px, 100px 250px;
  }
  100% {
    background-position: 1000px 200px, 1200px 300px, 1100px 250px;
  }
}

@keyframes wind {
  0% {
    background-position: 0 200px, 0 300px, 100px 250px;
  }
  100% {
    background-position: 1000px 200px, 1200px 300px, 1100px 250px;
  }
}

#main {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
}

#main h1 {
  text-align: center;
  width: 100%;
  color: whitesmoke;
  font-size: 75px;
}

#main p {
  text-align: center;
  font-size: 30px;
}
/*# sourceMappingURL=style.css.map */
