

#contact-section {
  width: 100%;
  min-height: 50vh;
  margin: 2em 0;
}

#contact-header {
  padding: 2em 0;
  width: 100vw;
  background-image: url("../images/misc/contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 2px solid black;
}

#contact-header-content {
  width: calc(70vw - 4em);
  margin: auto;
  padding: 2em;
  border-radius: 0.2em;
  background-color: rgba(255, 255, 255, .8);
}

#contact-header p {
  font-size: 1.25rem;
}

#contact-blurb {
  padding-top: 1em;
  line-height: 1.5em;
}

#contact-blurb, #problem-help-text {
  max-width: 75ch;
}


#confirmation-message {
  display: none;
  color: var(--valid);
  margin-top: 0.5em;
}

@media only screen and (max-width: 1000px) {

  #contact-form {
    margin: 2em auto;
  }

}

@media only screen and (max-width: 500px) {

  #contact-header-content {
    width: calc(85vw - 4em);
  }

}