* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Libre Baskerville', Georgia, serif;
    background: white;
    color: black;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: black;
    color: white;
    padding: 1rem;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
}

.header h1 .author {
    font-size: 1rem;
}

.header a {
    color: white;
    text-decoration: none;
}

.header a:hover {
    text-decoration: underline;
}

.content {
    background: white;
    color: black;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
}

.content h2 {
    color: black;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content h3 {
    color: black;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1rem;
}

.content a {
    color: black;
    text-decoration: underline;
}

.content a:hover {
    color: #666;
}

.footer {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .content {
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}