:root {
    --background: #f5f9fc;
    --text: #222;
    --muted: #666;
    --link: #b35c1e;
    --border: #d9e3ea;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 2rem;

    background: var(--background);
    color: var(--text);

    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
}

main,
footer {
    max-width: 42rem;
    margin: 0 auto;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

.tagline {
    margin: .5rem 0;
    font-size: 1.1rem;
    color: var(--muted);
}

.motto {
    margin-bottom: 2rem;
    font-weight: 600;
}

hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid var(--border);
}

section {
    margin-bottom: 2rem;
}

h2 {
    margin-bottom: .5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

ul {
    margin: 0;
    padding-left: 1.25rem;
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);

    color: var(--muted);
    font-style: italic;
}

section.inline {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

section.inline h2,
section.inline p {
    margin: 0;
}

.inline {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.inline h2 {
    width: 8rem;
    margin: 0;
    font-size: 1rem;
}

.inline a,
.inline p {
    margin: 0;
}