* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  font-family: 'Noto Sans', sans-serif;
}
:root {
  --bg-primary: rgb(32,37,42); /* #20252a */
  --fg-slogan-text: #ffffff;
  --bg-primary-button: #dddddd;
  --bg-secondary-button: transparent;
  --fg-primary-button: #000000;
  --fg-secondary-button: #bbbbbb;
  --corner-rounding-radius: 6px;
  --bright-vertical-line-thickness: 1px;
  --fg-bright-vertical-line: #dddddd;
  --fg-mission-target-text: #dddddd;
  --fg-mission-slogan-text: #ffffff;
  --fg-mission-explainer-text: #aaaaaa;
  --fg-footer-text: #888888;
  --max-width: 960px;
}
html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}
.body {
  background-color: var(--bg-primary);
  height: 100%;
  margin: 0;
  /*font-family: var(--font-sans);*/
  /*line-height: 1.7;*/
  /*color: var(--text-primary);*/
  /*overflow-x: hidden;*/
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 10px;
  padding-bottom: 20px;
  z-index: 9999;
  background-color: var(--bg-primary);
  opacity: 90%;
}
.header-content {
  display: flex;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto; /* centers */
}
.footer {
  width: 100%;
  margin-top: 40px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: var(--bg-primary);
}
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto; /* centers */
}
.copyright {
  color: var(--fg-footer-text);
  font-size: 11px;
  font-weight: 200;
  margin-top: 5px;
  margin-bottom: 5px;
}
.main {
  height: 100%;
}
.main-content {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto; /* centers */
}
.logo {
  vertical-align: center;
  margin-right: 20px;
  height: 100%;
  aspect-ratio: 575 / 169;
  background-image: url('logo.png');
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
.header-content-right-of-logo {
  flex-grow: 1;
  display: inline-block;
  vertical-align: center;
}
.menu {
  height: 100%;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
a { /*  doesn't work on specific buttons so we do it here */
  text-decoration: none;
}
.primary-button {
  background-color: var(--bg-primary-button);
  color: var(--fg-primary-button);
  border: 1px solid var(--bg-primary-button);
  border-radius: var(--corner-rounding-radius);
  padding: 5px 10px 5px 10px;
  align-content: center;
  text-align: center;
  text-decoration: none; /* doesn't work; moved to a {} */
}
.secondary-button {
  background-color: var(--bg-secondary-button);
  color: var(--fg-secondary-button);
  border: 1px solid var(--fg-secondary-button);
  border-radius: var(--corner-rounding-radius);
  padding: 5px 10px 5px 10px;
  align-content: center;
  text-align: center;
  text-decoration: none; /* doesn't work; moved to a {} */
}
.slogan {
  margin-top: 40px;
  margin-bottom: 40px;
}
.slogan-context {
  max-width: var(--max-width);
  margin: 0 auto; /* centers */
}
.slogan-text {
  color: var(--fg-slogan-text);
  opacity: 15%;
  font-family: 'Syncopate';
}
.mission {
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.mission > * {
  flex: 1;
}
.mission-goal {
  border-left: var(--fg-bright-vertical-line) solid var(--bright-vertical-line-thickness);
  padding-left: 10px;
  padding-right: 20px;
}
.mission-target {
  color: var(--fg-mission-target-text);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}
.mission-slogan {
  color: var(--fg-mission-slogan-text);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-bottom: 10px;
  vertical-align: top;
}
.mission-explainer {
  color: var(--fg-mission-explainer-text);
  font-size: 16px;
  font-weight: 200;
  vertical-align: top;
}
.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translateZ(0px);
}
.form {
  padding-top: 50px;
  /*
  width: 100%;
  height: 100%;
  */
  margin-left: 0;
  margin-right: auto;
}
/* Smartphone - Portrait */
@media only screen and (max-width: 480px) {
  .body {
    padding: 30px 10px 30px 10px;
  }
  .header {
    height: 30px;
  }
  .footer {
  }
  .slogan-text {
    font-size: 30px;
    font-weight: 600;
  }
  .primary-button {
    font-size: 12px;
    font-weight: 600;
  }
  .secondary-button {
    font-size: 12px;
    font-weight: 400;
  }
  .logo {
    margin-left: 10px;
  }
  .copyright {
    margin-left: 10px;
  }
  .header-content-right-of-logo {
    margin-right: 10px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .mission-row {
    padding-bottom: 10px;
  }
  .mission-goal {
    white-space: nowrap;
  }
  .mission-slogan {
    font-size: 16px;
    font-weight: 400;
  }
  .mission-explainer {
    font-size: 14px;
    font-weight: 200;
  }
}
/* Smartphone - Landscape & Tablet - Portrait */
@media only screen and (min-width: 481px) and (max-width: 960px) {
  .body {
    padding: 30px 10px 30px 10px;
  }
  .header {
    height: 30px;
  }
  .footer {
  }
  .slogan-text {
    font-size: 30px;
    font-weight: 600;
  }
  .primary-button {
    font-size: 12px;
    font-weight: 600;
  }
  .secondary-button {
    font-size: 12px;
    font-weight: 400;
  }
  .logo {
    margin-left: 10px;
  }
  .copyright {
    margin-left: 10px;
  }
  .header-content-right-of-logo {
    margin-right: 10px;
  }
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .mission-goal {
    width: 30%;
  }
}
/* Tablet - Landscape & Desktop */
@media only screen and (min-width: 961px) {
  .body {
    padding: 50px 0px 50px 0px;
  }
  .header {
    padding-top: 10px;
    height: 50px;
  }
  .footer {
  }
  .slogan-text {
    font-size: 60px;
    font-weight: 600;
  }
  .primary-button {
    font-size: 16px;
    font-weight: 600;
  }
  .secondary-button {
    font-size: 16px;
    font-weight: 400;
  }
  .logo {
    margin-left: 0;
  }
  .copyright {
    margin-left: 0;
  }
  .header-content-right-of-logo {
    margin-right: 0;
  }
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .mission-goal {
    width: 30%;
  }
}
