:root {
  --bg: oklch(0.94 0.006 80);
  --fg: oklch(0.22 0.005 60);
  --muted: oklch(0.55 0.006 70);
  --accent: oklch(0.63 0.19 42);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  width: min(640px, 100%);
}

.row {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 0 18px;
  align-items: start;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
}

p {
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.name {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 1px;
}

::selection {
  background: var(--fg);
  color: var(--bg);
}

@media (max-width: 600px) {
  body {
    place-items: center start;
    padding: 24px 22px;
  }

  main {
    width: min(520px, 100%);
  }

  .row {
    grid-template-columns: 7px 1fr;
    gap: 0 16px;
  }

  .dot {
    width: 7px;
    height: 7px;
    margin-top: 8px;
  }

  p {
    font-size: 16px;
    line-height: 1.56;
  }
}
