@font-face {
  font-family: "Sohne Web Regular";
  src:
    local("Sohne Regular"),
    local("Sohne-Regular"),
    url("assets/fonts/SohneWeb-Regular.woff2") format("woff2"),
    url("assets/fonts/SohneWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --surface: #f8fafc;
  --text-primary: #020617;
  --text-secondary: #475569;
  --link: #1d4ed8;
  --content-width: 730px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #020617;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --link: #93c5fd;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--surface);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--surface);
  color: var(--text-secondary);
  font-family: "Sohne Web Regular", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" 1, "ss02" 1;
}

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

.profile {
  width: min(var(--content-width), 100%);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block {
  width: 100%;
  overflow-wrap: anywhere;
}

.top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

h1,
p {
  margin: 0;
  font: inherit;
}

h1 {
  color: var(--text-primary);
}

a {
  color: var(--link);
  text-decoration-line: underline;
  text-decoration-thickness: auto;
  text-underline-offset: from-font;
  text-decoration-skip-ink: auto;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
