:root {
  color-scheme: light;
  --rose: #ead1dc;
  --ink: #172331;
  background: var(--rose);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 240px;
}

main {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vh, 32px);
  padding: 40px 20px;
}

.crest {
  display: block;
  width: min(560px, 100%, 67svh);
  height: auto;
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 36px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}

address span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  white-space: nowrap;
}


@media (max-width: 520px) {
  address { flex-direction: column; align-items: center; }
}
