:root {
  --background: #ffffff;
  --foreground: #111111;
  --muted: rgba(17, 17, 17, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--background);
  color: var(--foreground);
}

body {
  min-height: 100svh;
  font-family: "STIX Two Text", Georgia, serif;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: center;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.5rem 1.5rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--foreground);
}
