body {
    background-color: #2b2b2b;
    color: #a9a9a9;
    font-family: 'DejaVu Sans Mono', monospace;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

/* Header layout with Flexbox */
header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #555;
}

/* Large site title styling */
.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #cccccc;
}

/* Navigation styling */
nav a {
    color: #8ab4f8; /* Soft blue for links */
    text-decoration: none;
    margin-left: 20px; /* Space items out on the right */
}

nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Ensure headings aren't overly bright */
h1, h2, h3 {
    color: #cccccc;
}

/* Article content link styling */
article a {
    color: #8ab4f8;
    text-decoration: none;
}

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

/* Style inline code and code blocks */
code, pre {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: 'DejaVu Sans Mono', monospace;
}

pre {
    padding: 15px;
    overflow-x: auto;
    border: 1px solid #444;
}

/* Style blockquotes */
blockquote {
    border-left: 3px solid #555;
    margin-left: 0;
    padding-left: 15px;
    color: #888;
}
