html,
body {
  margin: 0;
  height: 100%;
}
#hero {
  display: block;
  background-image: url('./assets/background.jpg');
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 300px;
}
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  color: white;
  font-weight: lighter;
}
.message {
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 800px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    margin-top: 30px;
    font-size: 24px;
  }
  .message {
    width: 320px;
    padding: 20px 20px;
    line-height: 48px;
  }
}
@media (min-width: 800px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 24px;
  }
  .message {
    width: 400px;
    padding: 30px 50px;
    line-height: 60px;
  }
}
/*# sourceMappingURL=style.css.map */