@charset "UTF-8";
/* CSS Document */
/* ----------------- RESET (joshwcomeau.com) ----------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
/* ----------------- HUMAN ----------------- */
body {
  font: 1em Tahoma, Verdana, sans-serif;
  color: black;
  width: 100%;
  margin: 0 auto 0;
  background: #f3f3f3;
}
h1, h2, h3, p {
  margin-bottom: 1em;
}
a {
  color: black;
}
h1, h2 {
  font-size: 1.5em;
}
bold {
  color: red;
}
header {
  text-align: center;
  align-content: center;
  background-color: #fff;
  overflow: hidden;
  padding: min(7.75vw, 1em) 0;
}
header #logo, header h1 {
  font-size: min(6.75vw, 4em);
  margin: 0;
  line-height: 1;
	font-weight: bold;
}
header #logo, header h1, header #logo a, header h1 a {
  color: #074A67;
}
#wrapper {
  padding: 1em auto;
  border-top: 2px solid #074A67;
}
main, nav {
  max-width: 50rem;
  margin: 0 auto;
}
#silhouettes {
  display: block;
  height: 20vw;
  background: no-repeat bottom/cover url("gfx/silhouettes-opt.svg");
}
main :first-child {
  margin-top: 1em
}
nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 1em;
  padding: 2em 0;
}
nav a {
  padding: 1em 0;
  white-space: nowrap;
}
/* Text Decoration */
#logo a, nav a, main a:hover, main a:active {
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}
span.m {
  -webkit-user-select: all;
  user-select: all;
}
span.m {
  -webkit-user-select: all;
  user-select: all;
}
span.m:focus {
  border: 2px dashed #31808c;
  outline: none;
  animation: select 100ms step-end forwards;
}
@keyframes select {
  to {
    -webkit-user-select: text;
    user-select: text;
  }
}
span i {
  font-style: normal;
  text-decoration: underline;
}
span i:nth-child(even) {
  display: none;
}
@media (max-width: calc(50em + 2em)) {
  main, nav {
    padding-left: 1em;
    padding-right: 1em;
    margin: 0;
  }
  header #logo, header h1 {}
}
@media (max-width: 430px) {
  nav {
    /* flex-direction: column; */
    /* gap: 0; */
    /* flex-wrap: wrap; */
    padding-top: .5em;
  }
  nav a {
    /* padding: .85em 0; */
  }
}
@media (min-width: 431px) {}