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

body {
    background-color: #0e0e0e;
    color: #d4d4d4;
    font-family: Georgia, 'Times New Roman', serif;
    max-width: 680px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.6;
}

body.home {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    max-width: 100%;
    padding: 0;
    text-align: center;
}

h1 {
    font-size: 2rem;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    font-family: Arial, sans-serif;
}

h2 {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666;
    margin-top: 24px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

h3 {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

h3 span {
    color: #666;
}

p, li {
    font-size: 0.9rem;
    color: #aaa;
}

ul {
    list-style: none;
    margin-top: 12px;
}

li::before {
    content: "— ";
    color: #444;
}

a {
    color: #d4d4d4;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

a:hover {
    color: #fff;
    border-bottom-color: #666;
}

.divider {
    color: #444;
    margin: 8px 0 4px;
    letter-spacing: 0.2em;
}

article {
    margin-bottom: 36px;
}

p {
    margin-bottom: 8px;
}