body {
    font-family: 'Inconsolata', monospace;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

#container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header h1 a {
    color: #333;
    text-decoration: none;
}

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

#content {
    flex: 1;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 20px;
    margin: 20px 0 10px 0;
}

article h3 {
    font-size: 18px;
    margin: 20px 0 10px 0;
}

article h3 a {
    color: #333;
    text-decoration: none;
}

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

address {
    color: #666;
    font-size: 14px;
    font-style: normal;
    margin-bottom: 10px;
}

pre {
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.6;
    margin: 10px 0;
}

.readmore {
    margin: 10px 0 20px 0;
    font-size: 14px;
}

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

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

a {
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}