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

body {
    font-family: monospace;
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5dc;
    color: #2b2b2b;
}

header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #2b2b2b;
}

h1 {
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9em;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #2b2b2b;
    text-decoration: none;
    border-bottom: 1px dotted #2b2b2b;
}

nav a:hover {
    background-color: #2b2b2b;
    color: #f5f5dc;
}

main {
    margin-bottom: 40px;
}

article {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.meta {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

p {
    margin-bottom: 15px;
}

footer {
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 0.85em;
    text-align: center;
    color: #666;
}

.battery {
    margin-top: 10px;
    font-size: 0.9em;
}

/* Dithered images only - all images should be pre-dithered before upload */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Code blocks */
code {
    background-color: #e8e8d0;
    padding: 2px 5px;
    font-family: monospace;
    font-size: 0.9em;
}

pre {
    background-color: #e8e8d0;
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid #2b2b2b;
    overflow-x: auto;
    font-size: 0.85em;
    line-height: 1.4;
}

pre code {
    background-color: transparent;
    padding: 0;
    font-size: 1em;
}

/* Lists */
ul, ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

/* Headings */
h3 {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Signature */
.signature {
    text-align: right;
    font-style: italic;
    margin-top: 30px;
}
