html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  html, body {
    font-size: 14px;
  }
}

body {
  min-width: 375px;
}

.content {
  width: 960px;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .content {
    width: 343px;
  }
}
.content.large {
  width: auto;
  min-width: 960px;
  max-width: 1280px;
}
@media screen and (max-width: 1023px) {
  .content.large {
    min-width: 343px;
    max-width: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

header {
  z-index: 100;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  background-color: white;
}
header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}
@media screen and (max-width: 1023px) {
  header .content {
    justify-content: center;
    height: 70px;
  }
}
header .logo {
  height: 60px;
}
@media screen and (max-width: 1023px) {
  header .logo {
    height: 50px;
  }
}
header .button.menu {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .button.menu {
    display: block;
    position: absolute;
    right: 16px;
    height: 20px;
    width: 20px;
  }
  header .button.menu .bar {
    height: 2px;
    width: 100%;
    background-color: darkgray;
  }
  header .button.menu .bar:not(:first-child) {
    margin-top: 7px;
  }
}
header nav {
  position: relative;
  top: 3px;
}
@media screen and (max-width: 1023px) {
  header nav {
    position: fixed;
    display: none;
    top: 70px;
    height: 100%;
    left: 0;
    width: 100%;
    background-color: white;
  }
  header nav.show {
    display: block;
  }
}
header nav ul {
  display: flex;
}
@media screen and (max-width: 1023px) {
  header nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    font-size: 20px;
  }
}
header nav ul li {
  margin-left: 30px;
  color: black;
}
@media screen and (max-width: 1023px) {
  header nav ul li {
    margin-left: 0;
    margin-top: 12px;
  }
}
header nav ul li a {
  padding: 4px 6px;
}
header nav ul li a:hover, header nav ul li a.current {
  color: rgb(178, 48, 43);
  border-top: 3px solid rgb(178, 48, 43);
}
@media screen and (max-width: 1023px) {
  header nav ul li a:hover, header nav ul li a.current {
    border-top: none;
  }
}

main {
  margin-top: 88px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  main {
    margin-top: 70px;
    margin-bottom: 40px;
  }
}
main section.overview {
  padding-top: 30px;
  padding-bottom: 80px;
  text-align: center;
}
main section.overview.sans-paragraph {
  padding-top: 50px;
  padding-bottom: 50px;
}
main section.overview h1 {
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 44px;
  font-weight: bold;
  color: rgb(178, 48, 43);
}
@media screen and (max-width: 1023px) {
  main section.overview h1 {
    font-size: 32px;
  }
}
main section.overview.sans-paragraph h1 {
  margin-bottom: 0;
}
main section.overview p {
  max-width: 700px;
  margin: auto;
}

footer {
  padding: 50px 0 20px 0;
  background-color: rgb(99, 121, 214);
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 0 0 30px 0;
  }
}
footer .content {
  color: white;
}
footer .content .main {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  footer .content .main {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1023px) {
  footer .content .main section {
    margin-top: 50px;
    text-align: center;
  }
}
footer .content .main section .caption {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  footer .content .main section .caption {
    font-size: 20px;
  }
}
footer .content .main section ul li {
  margin-top: 18px;
}
footer .content .main section ul li:first-child {
  margin-top: 24px;
}
@media screen and (max-width: 1023px) {
  footer .content .main section ul li {
    margin-top: 12px;
  }
}
footer .content .main section.logo .logo {
  height: 60px;
}
footer .content .additional {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
}
