.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.section {
  padding: 1rem 2rem;
}

.section::before {
  content: "";
  display: block;
  width: 80%;
  margin: 0 auto 2rem;
  border-top: 5px solid #e0ddd7;
}

.section:first-of-type::before {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* NOTE: do NOT set height:100% on html or body — that locks body to
     exactly the viewport height, causing flex:1 on main to push the
     footer completely off screen */
}

main.contact-page {
  flex: 1;
  padding-bottom: 2rem;
}

#footer {
  height: auto;
}
