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

body {
    font-family: "Roboto Serif", Georgia, "Times New Roman", serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    padding: 2rem 1rem;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

nav a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}

nav a:hover {
    border-bottom: 1px solid #3498db;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Neuton", Georgia, "Times New Roman", serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #34495e;
}

article h1 {
    margin-bottom: 0.5rem;
}

time {
    display: block;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

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

li {
    margin-bottom: 0.5rem;
}

a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}

a:hover {
    border-bottom: 1px solid #3498db;
}

code {
    background: #ecf0f1;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: Monaco, "Courier New", monospace;
    font-size: 0.9em;
}

pre {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1rem 0;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.posts {
    margin-top: 2rem;
}

.post-preview {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.post-preview:last-child {
    border-bottom: none;
}

.post-preview h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.post-preview h2 a {
    color: #2c3e50;
    border-bottom: none;
}

.post-preview h2 a:hover {
    color: #3498db;
}

.post-preview time {
    margin: 0;
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}
