@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&family=Oswald&family=Raleway:wght@600&family=Roboto+Mono&display=swap");
body {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  display: block;
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    text-align: center;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 0pxf;
  /* grid-template-rows: 2fr 1fr; */
}
header .logo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}
header div.logo {
  padding: 0px 0;
  margin: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-top: 25px;
  max-width: 200px;
  width: 100%;
  display: flex;
}
header div.logo img {
  width: 100%;
  align-items: center;
  /*
  @media screen and (max-width: 768px) {
    width: 100px;
    max-width: 100px;
  }
  */
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
header nav {
  /* float: right; */
  display: flex;
  flex-direction: row;
  padding: 20px;
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  header nav {
    padding-left: 0.5em;
    padding-right: 0.5em;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  header nav {
    font-size: 14px;
  }
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 15px;
}
header nav li {
  display: inline-block;
  margin-left: 70px;
  padding-top: 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  header nav li {
    margin-left: 12px;
  }
}
header nav a {
  color: #444;
  text-decoration: none;
  font-size: 18px;
}
header nav a:hover {
  color: #000;
}
header nav a::before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background-color: #444;
  position: absolute;
  width: 0;
  top: -5px;
  transition: all ease-in-out 120ms;
}
@media screen and (max-width: 768px) {
  header nav a::before {
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  header nav a::before {
    top: -1px;
  }
}
header nav a:hover::before {
  width: 100%;
}

main .wrapper {
  width: 600px;
  margin-inline: auto;
  text-align: unset;
}
@media screen and (max-width: 768px) {
  main .wrapper {
    text-align: left;
    max-width: 100%;
  }
}
main div.person-headshot img {
  max-width: 200px;
  max-height: fit-content;
}
main .logo {
  display: flex;
  vertical-align: center;
  align-items: center;
}
main .layout {
  display: flex;
  flex-direction: column;
}
main .section {
  text-align: left;
}
main .section .header {
  margin-bottom: 0px;
}
main .section .content {
  margin-top: 0px;
  font-weight: 300;
}
main .faq ul::marker {
  list-style-type: disc;
  display: list-item;
}
main .faq .question {
  font-weight: 400;
}
main .person {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}
main .person-headshot {
  padding-left: 7px;
  max-width: 125px;
  max-height: 190px;
  padding-right: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .person-headshot {
    max-width: 21;
    max-height: 32px;
  }
}
main .person-headshot img {
  border-radius: 15px;
  padding-right: 0.5em;
}
main .section .person-name {
  font-weight: 400;
  text-align: center;
  font-size: 0.8em;
  padding: 0px;
}
main .person-headshot,
main .person-about {
  flex: 1 0 0px;
}