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

body {
    font-family: Georgia, serif;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
    color: #333;
}

header {
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    margin-bottom: 5px;
}

header .tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

nav a {
    color: #0066cc;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.post-list {
    list-style: none;
}

.post-list li {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.post-list a {
    font-size: 1.3em;
    color: #333;
    text-decoration: none;
}

.post-list a:hover {
    color: #0066cc;
}

.post-list .date {
    display: block;
    margin-top: 5px;
    color: #666;
    font-style: italic;
}

article h2 {
    margin-bottom: 5px;
}

article .date {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

article p {
    margin-bottom: 1em;
}

article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 4px;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    color: #666;
    font-size: 0.9em;
}
