@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f3efdf;
  --ink: #191916;
  --muted: #56554b;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

main {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  text-align: center;
}

h1 {
  margin: 0;
  line-height: 0;
}

h1 img {
  width: min(434px, 80vw);
  height: auto;
}

h1 a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 6px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1875rem;
}
