:root {
    --bg: #FAF9F6;
    --text: #1E1E1C;
    --muted: #4F4F4A;
    --link: #1E1E1C;
    --bold-text: #0E0E0C;
    --max-width: 780px;
}

@media (prefers-color-scheme: dark) {
    :root {
    --bg: #151513;
    --text: #EAE7DF;
    --muted: #B8B3A8;
    --link: #EAE7DF;
    --bold-text: #FAF7FF;
    }
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Literata", Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    max-width: var(--max-width);
    margin: 0;
    padding: 96px 0 120px 112px;
}

header {
    margin-bottom: 88px;
}

h1 {
    margin: 0 0 22px 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.role {
    margin: 0 0 18px 0;
    color: var(--text);
}

section {
    margin-top: 72px;
}

h2 {
    margin: 0 0 28px 0;
    color: var(--bold-text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin: 0 0 24px 0;
}

ul {
    margin: 20px 0 26px 0;
    padding-left: 16px;
}

li {
    margin-bottom: 10px;
}

li::marker {
    font-size: 0.55em;
    color: var(--muted);
}

.question-block {
    margin: 28px 0 34px 0;
}

.question {
    font-weight: 600;
}

strong {
    font-weight: 600;
}

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

a:hover {
    border-bottom-width: 2px;
}

.tight-spacing {
    margin-bottom: 12px;
}

.tight-spacing + ul {
    margin-top: 12px;
}

.contact {
    margin-top: 220px;
}

.contact p {
    margin-bottom: 8px;
}

.contact a {
    color: var(--bold-text);
    text-underline-offset: 2px;
}

@media (max-width: 820px) {
    main {
    max-width: none;
    padding: 72px 32px 96px 32px;
    }

    section {
    margin-top: 64px;
    }

    body {
    font-size: 17px;
    line-height: 1.64;
    }

    h1 {
    font-size: 31px;
    }

    h2 {
    font-size: 20px;
    margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    main {
    padding: 56px 24px 80px 24px;
    }

    header {
    margin-bottom: 72px;
    }

    section {
    margin-top: 68px;
    }

    body {
    font-size: 16.5px;
    }

    h1 {
    font-size: 29px;
    }

    .positioning {
    font-size: 18px;
    }
}