:root {
  --accent: #006;
  --accent-hover: #004;
  --accent-text: #fff;
  --highlight: #ffc90c;
  --text: #000;
  --text-light: #333;
  --background: #fff;
  --border: #003;
  --code: #000;
  --preformatted: #fff;
  --marked: #ffc90c;
  --disabled: #777;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  background-color: #fff;
  color: #000;

  > header {
    background: #003;
    color: #fff;
  }
}

header nav {
  justify-content: center;
  margin-bottom: 3rem;

  a,
  a:visited {
    color: #fff;
    border: #ffc90c 1px solid transparent;
    text-decoration: none;
  }

  a:hover,
  a:focus {
    background: #ffc90c;
    color: #003;
    border-color: #ffc90c;
  }
}

header + div {
  position: relative;
  left: 50%;

  width: 110vw;
  margin-left: -60vw;

  background: #fff;
  line-height: 0;
  overflow: hidden;
}

header + div img {
  display: block;
  width: 105%;
  height: auto;
  margin:0;
  padding: 0;

  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

header div {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;

  h1 {
    color: #ffc90c;
    font-size: 7em;
    font-family: caveat, serif;
    margin-bottom: 1rem;
  }

  p {
    color: #ffc90c;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

main {
  padding: 0rem;
  margin: 0rem;

  section {
    padding-block: 3.5rem;

    h3 a {
      text-align: center;
    }
  }
}


h2 {
  color: #000066;
  font-family: caveat, serif;
  font-size: 3em;
}

h3 {
  color: #000066;
  font-family: caveat, serif;
  font-size: 2em;
}

aside {
  background: #ffc90c;
  border-left: 0.35rem solid #ffc90c;
  color: #000000;
}

form {
  background: #ffffff;
  border: 2px solid #000066;
  border-radius: 0.35rem;
  padding: 1.5rem;

  button:hover,
  button:focus {
    background: #000066;
    color: #ffc90c;
    border-color: #000066;
  }
}

input,
textarea {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000066;
}

input:focus,
textarea:focus {
  border-color: #ffc90c;
  outline: 3px solid rgba(255, 201, 12, 0.35);
}

footer {
  width: 100vw !important;
  max-width: none !important;
  margin-inline: calc(50% - 50vw) !important;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 800px) {
  header nav {
    gap: 0.35rem;
  }

  header nav a {
    padding: 0.5rem 0.65rem;
  }
}
