/* Hero image */
.hero-img {
  position: relative;
  height: 100vh;
  padding-top: 20%;
  background-image: url("../images/gavel.jpg");
  background-position: 65% 50%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 800px) {
  .hero-img {
    background-position: top;
  }
}

/* Headline for site home page */
#headline {
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 10%;
}

@media screen and (min-width: 570px) {
  #headline {
    margin-top: -5%;
  }
}

#headline h1 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 1.3em;
}

@media screen and (min-width: 550px) {
  #headline h1 {
    font-size: 2.3em;
  }
}

#headline .btn {
  padding: 10px 30px;
}

@media screen and (min-width: 320px) {
  #headline .btn {
    padding: 10px;
  }
}

/* Homepage image */
#home-img {
  margin-top: 50px;
}