/* Industrial, utilitarian design */

:root {
    --bg: #fff;
    --fg: #000;
    --muted: #666;
    --border: #ccc;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #111;
        --fg: #eee;
        --muted: #999;
        --border: #333;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--fg);
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

a {
    color: var(--fg);
}

h1 {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
}

h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

header {
    margin-bottom: 2rem;
}

header p {
    color: var(--muted);
    font-size: 2rem;
}

time {
    color: var(--muted);
    font-size: 0.875rem;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.project h2 a {
    text-decoration: none;
}

.project h2 a:hover {
    text-decoration: underline;
}

article p {
    margin-bottom: 1rem;
}

article ul, article ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

article code {
    background: var(--border);
    padding: 0.125rem 0.25rem;
    font-size: 0.875rem;
}

