:root {
    --bg: #fafafa;
    --text: #171717;
    --muted: #525252;
    --border: #d4d4d4;
    --border-hover: #525252;
}

html {
    background: var(--bg);
}

body {
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
        segoe ui, helvetica neue, ubuntu, roboto, noto, arial, sans-serif;
    line-height: 1.55;
    margin: 0;
}

main {
    margin: 0 auto;
    max-width: 62ch;
    padding: 48px 20px;
}

h1,
h2 {
    font-family: "inter", system-ui, sans-serif;
    font-weight: normal;
    line-height: 1.15;
}

h1 {
    font-size: 2.2rem;
    margin: 2rem 0 1rem;
}

h2 {
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
}

p {
    margin: 1rem 0;
}

ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

li {
    margin: 0.45rem 0;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

a:hover {
    border-bottom-color: var(--border-hover);
}

.name {
    color: var(--muted);
    margin-top: 0;
}
