:root {
  color-scheme: light;
  --ink: #11110f;
  --paper: #fffefa;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

.site-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  align-content: center;
  padding: 32px 22px;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.logo-stage {
  width: clamp(360px, 42vw, 680px);
}

.logo-stage img {
  width: 100%;
  height: auto;
}

.info-stack {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 10pt !important;
  line-height: 1.35;
  text-align: center;
}

.info-stack p {
  margin: 0;
  font-size: 10pt !important;
}

.info-stack a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .site-page {
    padding: 24px 20px;
  }

  .logo-stage {
    width: min(86vw, 420px);
  }
}
