/* Reset */
* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Document Setup */
html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-family: Work Sans, sans-serif;
}

p {
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
}

input[type=text],
input[type=email],
textarea {
  padding: .5rem;
  margin: .5rem;
  font-family: Work Sans, sans-serif;
  display: block;
  width: 100%;
}

#site-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid black;
  margin-bottom: 2rem;
}

#site-header > #site-title > a {
  font-size: 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
}

#site-header img {
  height: 2.8rem;
}

#site-header #search-icon {
  height: 2.8rem;
  width: 2.8rem;
}

main {
  margin: 2rem;
}

#contact-form > * {
  width: 100%;
}

#contact-form #row-id > #column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/*# sourceMappingURL=styles.css.map */