body {
  background-color: #202020;
  color: #e3e3e3;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  margin: 0;
}

a {
  color: #ffdb11;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #ffde23a8;
}

a:visited {
  color: #ffdb11;
}

h2 {
  color: #debf0c;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}
h3 {
  color: #eecd14;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.5em;
}

h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1.25em;
  color: #eecd14;
}

.marked {
  font-weight: 700;
  color: #caad0d;
}
.italic {
  font-style: italic;
}
.center-text {
  text-align: center;
}
.large-text {
  font-size: 1.5em;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: "liga";
}

/* Header */
header {
  background-color: #000000;
  text-align: center;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s ease;
}

header.fade-out {
  opacity: 0;
  height: 20vh;
  background-color: #202020;
  transition: all 1s ease;
}
header img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}

header h1 {
  color: #debf0c;
  font-family: "Jost", sans-serif;
  font-weight: 900;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 5px;
}

header h2 {
  text-align: center;
  font-weight: 900;
  font-size: 1.25em;
  margin: 0;
  padding: 0;
}

header p {
  font-size: 0.75em;
  text-align: center;
}

header div {
  padding: 0 10vw;
}

#more {
  padding-top: 4em;
  font-size: 0.8em;
  color: #e3e3e3c4;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
#more:hover {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  header img {
    width: 75%;
  }
  header h1 {
    font-size: 3em;
  }
  header h2 {
    font-size: 1.75em;
  }
  header p {
    font-size: 1.25em;
  }
}
/* main */

main {
  background-color: #202020;
}

section {
  max-width: 1040px;
  padding: 20px 20px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  font-size: 2.25em;
}

section h2:after {
  background: none repeat scroll 0 0 #debf0c;
  bottom: -0.2em;
  content: "";
  display: block;
  height: 0.1em;
  position: relative;
  width: 10%;
  margin-left: auto;
  margin-right: auto;
}

section h3,
section h4 {
  margin-bottom: 0;
}
section p {
  margin-top: 0.25em;
}

/* Footer */
footer {
  background-color: #000407;
  display: block;
}

footer section {
  max-width: 1040px;
  padding: 20px 20px;
  margin: 0 auto;
}
footer h2 {
  margin-top: 0;
  padding-top: 1em;
  text-align: center;
  font-size: 1.25em;
}
footer h2:after {
  background: none repeat scroll 0 0 #debf0c;
  bottom: -0.2em;
  content: "";
  display: block;
  height: 0.025em;
  position: relative;
  width: 2.5%;
  margin-left: auto;
  margin-right: auto;
}

footer address {
  font-style: normal;
  font-size: 0.75em;
  text-align: center;
  padding-bottom: 2em;
}
