:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --text: #171717;
  --muted: #595954;
  --rule: #d8d8d0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.identity {
  width: min(100%, 420px);
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
}

a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}
