.flow\:block {
  display: flex;
  flex-direction: column;
}

.flow\:block\:start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flow\:block\:center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow\:block\:end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.flow\:block\:fill {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flow\:block\:fill > * {
  flex: 1 1 0%;
}

.flow\:block\:justify {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flow\:block\:distribute {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.flow\:block-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.flow\:block-reverse\:start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}

.flow\:block-reverse\:center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.flow\:block-reverse\:end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.flow\:block-reverse\:fill {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}

.flow\:block-reverse\:fill > * {
  flex: 1 1 0%;
}

.flow\:block-reverse\:justify {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}

.flow\:block-reverse\:distribute {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
}

.flow\:inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flow\:inline\:start {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flow\:inline\:center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.flow\:inline\:end {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flow\:inline\:fill {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow\:inline\:fill > * {
  flex: 1 1 0%;
}

.flow\:inline\:justify {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow\:inline\:distribute {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.flow\:inline-reverse {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.flow\:inline-reverse\:start {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flow\:inline-reverse\:center {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: center;
}

.flow\:inline-reverse\:end {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flow\:inline-reverse\:fill {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow\:inline-reverse\:fill > * {
  flex: 1 1 0%;
}

.flow\:inline-reverse\:justify {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flow\:inline-reverse\:distribute {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.flow\:line {
  display: flex;
  flex-direction: row;
}

.flow\:line\:start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.flow\:line\:center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.flow\:line\:end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.flow\:line\:fill {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flow\:line\:fill > * {
  flex: 1 1 0%;
}

.flow\:line\:justify {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flow\:line\:distribute {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.flow\:line-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flow\:line-reverse\:start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.flow\:line-reverse\:center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.flow\:line-reverse\:end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.flow\:line-reverse\:fill {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.flow\:line-reverse\:fill > * {
  flex: 1 1 0%;
}

.flow\:line-reverse\:justify {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.flow\:line-reverse\:distribute {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}

.flow\:start {
  justify-content: flex-start;
}

.flow\:center {
  justify-content: center;
}

.flow\:end {
  justify-content: flex-end;
}

.flow\:fill {
  justify-content: space-between;
}

.flow\:fill > * {
  flex: 1 1 0%;
}

.flow\:justify {
  justify-content: space-between;
}

.flow\:distribute {
  justify-content: space-evenly;
}

.content\:hug {
  flex-grow: 0;
}

.content\:fill {
  flex-grow: 1;
}

.grow\:2 {
  flex-grow: 2;
}

.grow\:3 {
  flex-grow: 3;
}

.space\:1,
.gap\:1 {
  gap: 1em;
}

.space\:block\:1,
.gap\:block\:1 {
  row-gap: 1em;
}

.space\:inline\:1,
.gap\:inline\:1 {
  column-gap: 1em;
}

.space\:2,
.gap\:2 {
  gap: 2em;
}

.space\:block\:2,
.gap\:block\:2 {
  row-gap: 2em;
}

.space\:inline\:2,
.gap\:inline\:2 {
  column-gap: 2em;
}

.align\:start {
  align-items: flex-start;
  align-content: flex-start;
}

.align\:center {
  align-items: center;
  align-content: center;
}

.align\:end {
  align-items: flex-end;
  align-content: flex-end;
}

.align\:fill {
  align-items: stretch;
  align-content: stretch;
}

.align\:baseline {
  align-items: baseline;
  align-content: baseline;
}

.align\:justify {
  align-content: space-between;
}

.align\:distribute {
  align-content: space-evenly;
}

.test {
  padding-left: 3em;
  padding-right: 3em;
  padding-inline: 3em;
}

.pad\:box {
  padding: 1em;
}

.pad\:box\:1 {
  padding: 1em;
}

.pad\:box\:2 {
  padding: 2em;
}

.pad\:box\:3 {
  padding: 3em;
}

.pad\:box\:4 {
  padding: 4em;
}

.pad\:box\:5 {
  padding: 5em;
}

.pad\:block {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-block: 1em;
}

.pad\:block\:1 {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-block: 1em;
}

.pad\:block\:2 {
  padding-top: 2em;
  padding-bottom: 2em;
  padding-block: 2em;
}

.pad\:block\:3 {
  padding-top: 3em;
  padding-bottom: 3em;
  padding-block: 3em;
}

.pad\:block\:4 {
  padding-top: 4em;
  padding-bottom: 4em;
  padding-block: 4em;
}

.pad\:block\:5 {
  padding-top: 5em;
  padding-bottom: 5em;
  padding-block: 5em;
}

.pad\:inline {
  padding-left: 1em;
  padding-right: 1em;
  padding-inline: 1em;
}

.pad\:inline\:1 {
  padding-left: 1em;
  padding-right: 1em;
  padding-inline: 1em;
}

.pad\:inline\:2 {
  padding-left: 2em;
  padding-right: 2em;
  padding-inline: 2em;
}

.pad\:inline\:3 {
  padding-left: 3em;
  padding-right: 3em;
  padding-inline: 3em;
}

.pad\:inline\:4 {
  padding-left: 4em;
  padding-right: 4em;
  padding-inline: 4em;
}

.pad\:inline\:5 {
  padding-left: 5em;
  padding-right: 5em;
  padding-inline: 5em;
}

.pad\:1 {
  padding: 1em;
}

.pad\:2 {
  padding: 2em;
}

.pad\:3 {
  padding: 3em;
}

.pad\:4 {
  padding: 4em;
}

.pad\:5 {
  padding: 5em;
}

[class*="layout:gap"], [class*="layout:gap"][class*="(normal)"] {
  --gap: 1em;
}

[class*="layout:gap"][class*="(large)"] {
  --gap: 3em;
}

[class*="layout:gap"][class*="(wide)"] {
  --gap: calc((100/9)*1vw);
}

[class*="layout:gap"][class*="layout:"][class*=stack] > * + * {
  margin-top: var(--gap);
  margin-block-start: var(--gap);
}

[class*="layout:gap"][class*="layout:"][class*="(stacks)"] > :not([class*="layout:"]) * + * + * {
  margin-top: var(--gap);
  margin-block-start: var(--gap);
}

[class*="layout:gap"][class*="layout:"][class*=row] > * + * {
  margin-left: var(--gap);
  margin-inline-start: var(--gap);
}

[class*="layout:gap"][class*="layout:"][class*="(rows)"] > :not([class*="layout:"]) * + * + * {
  margin-left: var(--gap);
  margin-inline-start: var(--gap);
}

nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30ch, 1fr));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 11.1111111111vw;
}
@media (max-width: 20em) {
  nav {
    margin-left: -11.1111111111vw;
    margin-right: -11.1111111111vw;
  }
}
nav > * {
  max-width: 100%;
  text-decoration: none;
  padding: 1em;
  border: 0 solid var(--border-color);
  outline: 0 solid var(--border-color);
}
@media (max-width: 20em) {
  nav > *::after {
    content: "+";
    position: absolute;
    right: 0;
  }
}
@media (min-width: 20em) {
  nav > * {
    border-width: 1px;
    outline-width: 1px;
  }
}
nav a {
  color: var(--text-color);
}
nav a[aria-current=page] {
  --background-color: var(--swatch-primary);
  --text-color: var(--swatch-secondary);
  background-color: var(--background-color);
}

.Instances {
  font-weight: normal;
  list-style: none;
  padding: 0;
  margin: 0;
}
.Sponsors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (orientation: portrait) {
  .Sponsors {
    padding-top: 11.1111111111vw;
  }
}
@media (orientation: landscape) {
  .Sponsors {
    padding-top: 11.7647058824vw;
  }
}
@media (min-width: 20em) {
  .Sponsors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
  }
}
.Sponsors .sponsor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  opacity: 0.5;
  color: black;
  filter: invert(100%);
  mix-blend-mode: difference;
}
@media (orientation: portrait) {
  .Sponsors .sponsor {
    width: 22.2222222222vw;
  }
}
@media (orientation: landscape) {
  .Sponsors .sponsor {
    width: 17.6470588235vw;
  }
}
.Sponsors .sponsor > * {
  object-fit: contain;
  aspect-ratio: 1/1;
}

:root {
  --text-color: var(--swatch-primary, white);
  --background-color: var(--swatch-secondary, black);
  --border-color: var(--swatch-primary, white);
  --accent-color: var(--swatch-tertiary, black);
}

body {
  margin: 0;
  background: var(--background-color);
  color: var(--text-color);
  font-family: system-ui, sans-serif;
}

a {
  color: var(--accent-color);
}

@media (orientation: portrait) {
  main,
  header {
    padding: 11.1111111111vw;
  }
}
@media (orientation: landscape) {
  main,
  header {
    padding: 5.8823529412vw;
  }
}
main + main,
main + header,
header + main,
header + header {
  padding-top: 0;
}

main {
  display: flex;
  flex-direction: column;
}
main.home p {
  font-size: 5vw;
}

body.template-page .menu {
  order: -1;
}

.cover {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1000;
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

.header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0.5;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.2ch;
  font-size: 2vw;
}
.header a {
  color: inherit;
  text-decoration: inherit;
}
