section.banner {
  position: relative;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  max-width: unset;
  width: 100%;
  height: 600px;

  padding: 0;
  padding-bottom: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: var(--the-white);
  text-shadow: 0 2px 1px rgba(0,0,0,0.2);
}

section.banner * {
  position: relative;
}

section.banner h1, section.banner h3 {
  color: var(--the-white);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  font-weight: 300;
}

section.banner h1 {
  font-size: 4em;
  text-align: left;
  padding-left: 2em;
  margin: 0;
}

section.banner h3 {
  font-size: 2em;

  padding: unset;
  padding-left: 4em;
  padding-right: 4em;
  width: auto;

  margin: 0;
}

section.banner:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

section.banner #buttons {
  margin: 0;
  margin-top: 2em;
  margin-left: 8em;
}

section.banner #buttons button {
  font-size: 1em;
  margin-right: 2em;
}

section.banner #buttons button:nth-child(odd) {
  background-color: white;
  border: 2px solid white;
}

section.banner #buttons button:nth-child(odd) a {
  color: black;
}

section.banner #buttons button:nth-child(even) {
  background-color: transparent;
  border: 2px solid white;
}

section.banner #buttons button:nth-child(even) a {
  color: white;
}

@media (max-width: 1080px) {
  section.banner {
    height: unset;
    padding: 2em 1em;
    box-sizing: border-box;
  }

  section.banner h1 {
    font-size: 2em;
    padding: unset;
  }

  section.banner h3 {
    font-size: 1.2em;
    padding: 0;
  }

  section.banner #buttons {
    margin: 1em 0 0 0;
  }

  section.banner #buttons button {
    font-size: 0.7em;
    margin: 0.5em;
  }
}
