:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --text: #191919;
  --muted: #6b6b6b;
  font-family: "Notion Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Notion Inter";
  src: url("https://www.notion.com/front-static/fonts/NotionInter-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Notion Inter";
  src: url("https://www.notion.com/front-static/fonts/NotionInter-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: var(--muted);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

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

.shell {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 4rem;
}

.intro {
  width: min(100%, 36rem);
}

h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #191919;
    --text: #f7f7f5;
    --muted: #a8a8a8;
  }
}

@media (max-width: 34rem) {
  .shell {
    padding: 2rem;
  }
}
