:root {
  color-scheme: dark;
  --wine: #4b0d19;
  --ink: #fff4ed;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background: var(--wine);
  color: var(--ink);
}

.site-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  width: max-content;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  white-space: nowrap;
}

.registered-letter {
  position: relative;
}

.registered-mark {
  position: absolute;
  top: -0.55em;
  right: -0.24em;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.28em;
  font-weight: 400;
}

.contact {
  position: fixed;
  right: 8px;
  bottom: 7px;
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: lowercase;
}

.contact:hover,
.contact:focus-visible {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .contact {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 {
    font-size: 0.5rem !important;
  }
}
