@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}

:root {
  --ink: #111111;
  --ink-muted: #2a2620;
  --paper: #f6f4ef;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  display: grid;
  min-height: 100vh;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  place-items: center start;
}

.intro {
  max-width: 760px;
  padding: 64px 0;
}

.mark {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 32px;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 28px;
  line-height: 1.25;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.site-link {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-link:hover,
.site-link:focus-visible {
  color: var(--ink-muted);
}

.intro > .site-link + h1 {
  margin-top: 36px;
}

.post-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.post-link {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.post-link:hover,
.post-link:focus-visible {
  color: var(--ink-muted);
}

.post-meta {
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 400;
}

.post-body {
  max-width: 640px;
  margin-top: 36px;
}

.post-body p + p {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .page {
    width: calc(100% - 32px);
  }

  .intro {
    padding: 48px 0;
  }

  .mark {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.06;
  }

  p {
    font-size: 23px;
  }

  .site-link {
    font-size: 17px;
  }
}
