@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Code+Latin:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap");
* {
  margin: 0; /* user-agent css reset */
  padding: 0;
}
:root {
  --font-mono: "M PLUS Code Latin", monospace;
  --font-sans: "Atkinson Hyperlegible Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
  font-family: var(--font-mono);
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-color: ivory;
  margin: 10vh 20vw;
  max-width: 60vw;
}
.force-mono {
  font-family: var(--font-mono);
}
.force-sans {
  font-family: var(--font-sans);
}
@media screen and (max-aspect-ratio: 1/1) {
  body {
    margin: 5vh 15vw;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
ul {
  padding-left: 1rem;
}
.no-bullets ul {
  list-style: none;
  padding: 0;
}
.notice {
  padding: 2.5rem;
  border-radius: .5rem;
  font-family: var(--font-sans);
}
.alert {
  background-color: lightcoral;
}
.hidden {
  visibility: hidden;
}
#currplay, #affliation { /* incomplete sections */
  display: none;
}
a {
  color: darkblue;
}
hgroup {
  padding-top: 0;
  padding-bottom: 1rem;
}