html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

nav {
  border: 2px solid #cecece;
}

@font-face {
  font-family: "Amstelvar VF";
  src: url("https://mdn.github.io/shared-assets/fonts/variable-fonts/AmstelvarAlpha-VF.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-stretch: 75% 150%;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Amstelvar VF", Georgia, serif;
  font-size: calc(23px + 0.6vw);
  scroll-behavior: smooth;
}

footer {
  font-size: 0.75rem;
  color: #333;
  font-family: "PitchWeb", Courier, monospace;
}

h1 {
  text-align: center;
  font-size: 5rem;
  font-stretch: 75%;
  font-weight: 450;
  margin: 4rem 0;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  font-stretch: 80%;
  font-weight: 550;
  margin: 3rem 0;
}

h3 {
  text-align: center;
  font-size: 1.25rem;
  font-stretch: 90%;
  font-weight: 500;
}

p {
  text-indent: 2rem;
  margin: 1.5rem 0;
  line-height: 1.4;
}

a {
  color: #000000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

p::first-line {
  font-size: 1.125rem;
  font-stretch: 90%;
  font-weight: 550;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

main {
  min-height: 50vh;
  max-width: 74vw;
  padding: 4rem 0;
  margin: 0 auto;
  transition: max-width 0.1s ease;
}

nav {
  min-height: 25vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
nav h3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

::selection {
  background-color: #000000;
  color: #ffffff;
}

h1::-moz-selection, h2::-moz-selection {
  text-decoration: underline;
}

h1::selection, h2::selection {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  main {
    max-width: 88vw;
  }
  nav {
    min-height: 27.5vh;
    flex-direction: column;
    padding: 1rem;
  }
  nav h3 {
    flex: auto;
    line-height: 125%;
  }
  footer {
    min-height: 17.5vh;
  }
}/*# sourceMappingURL=general.css.map */