@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700);
* {
  margin: 0;
  padding: 0;
}

html {
  background-image: url(intro-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  height: 100%;
  min-height: 600px;
  position: relative;
  width: 100%;
}
@keyframes fadeOverlay {
  0% {
    background-color: #11111a;
  }
  100% {
    background-color: rgba(17, 17, 26, 0.7);
  }
}
html:after {
  animation: 0.4s ease-in-out 0s 1 fadeOverlay;
  background-color: rgba(17, 17, 26, 0.7);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
html .container {
  height: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
html .container nav {
  margin-top: 40px;
  padding: 0 15px;
}
html .container main {
  left: 50%;
  max-width: 1200px;
  padding-top: 40px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
html .container main h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 15px 15px;
}
@media (min-width: 768px) {
  html .container main h1 {
    font-size: 52px;
  }
}
html .container main p {
  color: #8b99a5;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.4;
  padding: 15px;
}
@media (min-width: 768px) {
  html .container main p {
    font-size: 27px;
  }
}
html .container main p a {
  color: #fff;
  text-decoration: none;
}
html .container main p a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */
