html, body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  background: #184e86;
  color: #fff;
}
/**** NAV MENU ****/
nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 30px;
  background: #0006;
  padding: 10px;
  line-height: 30px;
  border-radius: 0 0 0 10px;
}
nav a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  margin: 0 20px;
  transition: color 200ms;
}
nav a:hover {
  color: #bbf;
}
/**** Top of the page ****/
#hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, #184e8600, #184e86), url('./bg_base.jpg');
  background-size: cover, cover;
  background-position: center, center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-height: 150vw;
}
#hero .logo {
  max-height: 40%;
  max-width: 60%;
}
#hero h1 {
  text-transform: uppercase;
  font-size: 40px;
  margin: 0;
  font-weight: 1000;
}
#hero .tagline {
  font-size: 25px;
  margin: 20px;
}
#hero .download {
  display: inline-block;
  padding: 18px 70px 16px;
  font-size: 20px;
  border: 1px solid #fff;
  background: #fff0;
  transition: background-color 200ms;
  cursor: pointer;
  margin: 20px;
  color: #fff;
  text-decoration: none;
}
#hero .download:hover {
 background: #fff4;
}
/**** Full-width images ****/
img.full {
  width: 100%;
  display: block;
}
img.full.semi {
  padding: 40px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  img.full.semi {
    padding: 0;
  }
}
/**** SECTIONS ****/
section {
  box-sizing: border-box;
  padding: 50px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section h1 {
  font-size: 50px;
  line-height: 54px;
  font-weight: 900;
  max-width: 1000px;
}
section h2 {
  font-size: 26px;
  line-height: 30px;
}
section p, section address {
  margin: 0;
  line-height: 20px;
  font-size: 16px;
}
section h1, section h2 {
  font-weight: 1000;
  margin: 0;
}
section h1 + *, section h2 + *, section p + *, section address + *, section table + *, section ul + * {
  margin-top: 30px;
}
section a {
  color: inherit;
}
section .callout {
  display: block;
  padding: 50px;
  text-align: center;
  max-width: 900px;
  margin: 30px 0;
  background: linear-gradient(to right, #ff66c4, #ffde59);
  color: #184e86;
}
@media (max-width: 600px) {
  section {
    max-height: none;
  }
  section .callout{
    margin-left: -50px;
    margin-right: -50px;
  }
}
/*** Inverted section ****/
section.inverted {
  background: linear-gradient(to right, #ff66c4, #ffde59);
}
section.inverted .callout {
  background: #184e86;
  color: #fff;
}
section.inverted .callout h1, section.inverted .callout h2, section > h1, section > h2 {
  background: linear-gradient(to right, #ff66c4, #ffde59);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
/**** FOOTER ****/
footer {
  background: #222;
  color: #aaa;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 10%;
  line-height: 22px;
  align-items: center;
  display: flex;
}
footer * {
  display: inline-block;
}
footer address {
  display: none;
}
footer .copy {
  min-width: 300px;
  max-width: 700px;
  flex: 999;
  display: inline-block;
  font-style: normal;
}
footer a {
  color: inherit;
  text-decoration: none;
  flex: 0 0 200px;
  text-align: center;
}
footer a:hover {
  color: #fff;
}
.flex {
  flex: 1;
}
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer a {
    margin: 10px 0 0;
    flex: 0 0 0;
  }
}
/**** Other pages ****/
header {
  background: linear-gradient(to right, #ff66c4, #ffde59);
  padding: 50px;
  flex-direction: column;
  align-items: center;
  display: flex;
}
header * {
  max-width: 900px;
  color: #184e86;
}
section.fullPage {
  max-height: none;
  min-height: 100vh;
  padding: 50px;
  box-sizing: border-box;
  height: auto;
}
section.fullPage > * {
  max-width: 1280px;
  width: 100%;
}
section.fullPage ul {
  margin: 0;
}
table {
  border-collapse: collapse;
}
table th, table td {
  border: 1px solid #fff;
  padding: 3px 7px;
}
