body {
    background-color: #111;
    color: #ccc;
    font-family: 'Menlo', 'Consolas', 'SF Mono', monospace;
    margin: 0;
    padding: 2rem 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 680px;
    margin: 0 auto;
}

header, main, footer {
    margin-bottom: 0;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3rem;
}

header h1 {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
    border: none;
}

.main-links {
    display: flex;
    gap: 1rem;
}

.main-links a {
    color: #8ab4f8;
    text-decoration: none;
    font-size: 1rem;
}

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

.description {
    line-height: 1.6;
    margin-bottom: 3rem;
}

main section {
    margin-bottom: 0;
}

h1, h2 {
    color: #ffffff;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

a {
    color: #8ab4f8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.link-list, .post-list {
    list-style: none;
    padding: 0;
}

.link-list li, .post-list li {
    margin-bottom: 0.75rem;
}

.post-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem !important;
}

.post-title {
    flex: 1;
}

.post-date {
    color: #888;
    font-size: 0.9rem;
    margin-left: 1rem;
    white-space: nowrap;
}

.recent-posts h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
}

footer {
    border-top: 1px solid #444;
    padding-top: 2rem;
    color: #777;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #8ab4f8;
    text-decoration: none;
}

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

.post-content {
    padding-top: 2rem;
    max-width: none;
}

.post-content h1 {
    font-size: 1.3rem;
    color: #ffffff;
    border: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-weight: normal;
}

.post-content h2, .post-content h3 {
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    padding: 0;
    margin: 1.5rem 0 1rem 0;
    font-weight: normal;
}

.post-content p {
    line-height: 1.6;
    margin: 1rem 0;
    color: #ccc;
}

.post-content strong {
    color: #fff;
    font-weight: normal;
}

.post-content ul, .post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin: 0.5rem 0;
    color: #ccc;
}

.post-content pre {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0;
    overflow-x: auto;
    font-family: inherit;
}

.post-content code {
    font-family: inherit;
    background-color: #2a2a2a;
    color: #fff;
    padding: 0.1em 0.3em;
    border-radius: 0;
}

.post-content pre code {
    background-color: transparent;
    padding: 0;
    color: #ccc;
}

.post-content blockquote {
    border-left: 2px solid #444;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #999;
    font-style: normal;
}

.back-nav {
    margin-bottom: 2rem;
}