/* Colors are the mark's own, read from brands/angelcaptain/public/favicon.svg in
   the angel-captain repository. There is no palette to import: brand.ts carries
   names only, so the SVG is the only place these two values are written down. */
:root {
  color-scheme: light dark;
  --ground: #f7f5f2;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #14263a;
  }
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--ground);
}

main {
  box-sizing: border-box;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
}

img {
  width: min(45vw, 220px);
  height: auto;
}
