
@import url('./fonts/stylesheet.css');


:root{
  /* colors */
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent: #0f172a;

  /* spacing */
  --gutter: 1rem;
  --max-width: 68rem;

  /* typography */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --font-mono: "Courier Prime", "SFMono-Regular", Menlo, Monaco, "Courier New", monospace;
  --font-typewriter: "Cutive Mono", "SFMono-Regular", Menlo, Monaco, "Courier New", monospace;
  --base-size: 16px;
  --line-height: 1.5;
}

/* simple reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--base-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-typewriter);
  line-height: var(--line-height);
  font-weight: 500;
  font-style: normal;
  padding: calc(var(--gutter) * 1.25);
}

/* layout container */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* headings */
h1, h2, h3, h4 {
  margin: 0 0 5px 0;
  line-height: 1.15;
  color: var(--accent);
}

h1 {
    font-size: 38px;
}

.event-block {
    margin-top: 24px;
}

p {
  margin: 0 0 1rem 0;
}

.bonus p {
    font-size: 14px;
    font-family: var(--font-mono);
    font-style: italic;
}

.marginalia {
    height: 1px;
    margin-bottom: 16px;
}


header {
    text-align: center;
    margin: 0 0 0 0;
}

div.top-line {
    width: 100vw;
    height: 12px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    margin: 0 -20px 20px;
}

div.bottom-line {
    width: 100vw;
    border-bottom: 2px solid black;
    margin: 20px -20px 20px;
}

div.breakline {
    height: 0;
    width: 90%;
    border-bottom: 1px solid black;
    margin: 32px auto;
}


footer {
    width: 100%;
    margin: auto;
}

footer div.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:5%;
}

@media (max-width: 600px) {
    footer div.footer-inner {
        flex-direction: column;
        gap: 10px;
    }

}

/* small utility */
.center { text-align: center; }
.small { font-size: .875rem; color: var(--muted); }
