#hero {
  height: calc(50vh - var(--header-height));
  background-position: bottom;
}

#hero .content {
  margin-top: 0;
}

#hero h1 {
  margin-bottom: 4vh;
}

#content {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto;
  margin-top: 10vh;
}

#content a {
  text-decoration: underline;
}

#content h3 {
  margin-top: 3%;
  margin-bottom: 1%;
}

#content h4 {
  margin-top: 2%;
  margin-bottom: .5%;
}

#content p {
  line-height: 140%;
  margin-bottom: 1%;
}

#content ul {
  padding-left: 2%;
  padding-bottom: 1%;
}

@media only screen and (max-width: 500px) {
  #hero {
    height: calc(40vh - var(--header-height));
    background-position: center;
  }

  #content h3 {
    margin-top: 11%;
    margin-bottom: 3%;
    line-height: 130%;
  }

  #content h4 {
    margin-top: 6%;
    margin-bottom: 2%;
    line-height: 130%;
  }

  #content p {
    margin-bottom: 3%;
  }

  #content ul {
    padding-left: 7%;
    padding-bottom: 3%;
  }
}