@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --green400: #8dc63f;
  --green700: #006838;
  --yellow400: #fbb040;
  --yellow700: #cc6d3d;
  --red400: #ff333b;
  --red700: #b30011;
  --putty200: #fcfaf7;
  --putty400: #e5e1da;
  --putty700: #a69f95;
  --navy200: #1f5299;
  --navy400: #1b3559;
  --navy700: #0a1d33;
  --navy800: #010b16;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #8dc63f;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: calc(14px + 0.3vw);
  color: #0a1d33;
}
@keyframes colorCycle {
  0% {
    background-color: hsl(90, 60%, 60%);
  }
  25% {
    background-color: hsl(40, 90%, 60%);
  }
  50% {
    background-color: hsl(0, 100%, 60%);
  }
  75% {
    background-color: hsl(40, 90%, 60%);
  }
  100% {
    background-color: hsl(90, 60%, 60%);
  }
}
section {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
article {
  padding: 2em;
  max-width: 960px;
  text-wrap: balance;
}
disclaimer {
  display: block;
  font-family: "Roboto Condensed", "Inter", ui-sans-serif, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}
h1,
h2 {
  font-family: "Work Sans", Inter, sans-serif;
  padding: 0;
  margin: 0;
}
h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
h2 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 1rem;
}
@media (min-width: 900px) {
  h1 {
    font-size: 6rem;
  }
  h2 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}
h4,
h5 {
  margin: 0;
  margin-top: 2rem;
  padding: 0;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
h5 {
  font-size: 1rem;
  margin-top: 1rem;
}
a {
  font-weight: 700;
  color: black;
  text-decoration: none;
  background: white;
  padding: 2px 10px;
}
input {
  border: none;
  border-bottom: 2px dotted #b3a48f;
  width: 18em;
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
}
input:focus {
  outline: none;
  border-bottom: 2px solid #b3a48f;
}
#intro {
  height: auto;
  overflow: hidden;
  transition: 1s;
}
#hero {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #8dc63f;
  background-image: url("../images/bowie-changes-transparent.webp");
  background-size: cover;
  background-position: center;
  transition: height 1s ease-out allow-discrete;
  transition: opacity 1s ease-out;
  animation: colorCycle 60s infinite;
  opacity: 0;
}
#hero.loaded {
  opacity: 1;
}
#logo {
  width: 25%;
  aspect-ratio: 1 /1;
  display: flex;
  justify-content: right;
  align-items: flex-end;
}
#logo img {
  display: block;
  width: 25%;
  min-width: 50px;
  max-width: 3rem;
  aspect-ratio: 1 /1;
  margin: 0 50px 80px 0;
}
@media (min-width: 800px) {
  #logo {
    width: 25%;
  }
  #logo img {
    margin: 0 40px 50px 0;
  }
}
#outer {
  background-color: rgba(242, 237, 240, 1);
  width: 100%;
  height: 100vh;
  margin-top: 100vh;
  box-shadow: 0 0 25px 0 rgba(0, 20, 50, 0.25);
}
#contactform {
  display: none;
  opacity: 0;
  width: fit-content;
  margin: 0;
  margin-top: -1.1em;
  background-color: #fff;
  padding: 1em;
  border-radius: 0 0 0.5em 0.5em;
  transition: opacity 0.3s ease-in-out, display 0.25s;
  transition-behavior: allow-discrete;
}

#contactform.visible {
  display: block;
  opacity: 1;
}

@starting-style {
  #contactform.visible {
    display: block;
    opacity: 0;
  }
}
#contact {
  background-color: #fff;
  color: #0a1d33;
  border: none;
  font-size: 1em;
  font-weight: 700;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
}
#contact:hover {
  color: black;
  cursor: pointer;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
#submit {
  background-color: #1b3559;
  color: #f2e8da;
  border: none;
  font-size: 1em;
  font-weight: 700;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
}
#submit:hover {
  color: white;
  cursor: pointer;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
#success {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, display 0.25s;
  transition-behavior: allow-discrete;
}
footer {
  opacity: 0;
  width: 100%;
  padding: 1em;
  position: fixed;
  bottom: 0;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  background-color: rgba(243, 241, 236, 0);
  color: #fff;
  transition: 0.3s;
}

/* WebAwesome Theme Overrides*/
--wa-font-family-body: Inter, ui-sans-serif, system-ui, sans-serif;
--wa-font-family-heading: "Work Sans", Inter, ui-sans-serif, system-ui, sans-serif;
--wa-font-family-code: "Roboto Mono", ui-monospace, monospace;
--wa-font-family-longform: ui-serif, serif;
