body {
    background-color: #1e192d;
    font-family: monospace;
    color: white;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    text-align: left;
}

.header {
    padding: 1ch 2ch;
    background-color: midnightblue;
    border-bottom: 2px solid #5ff7f4;
}

a {
    color: #5ff7f4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    padding: 2ch;
    text-align: left;
    max-width: 80ch;
    margin: 0;
}

.section {
    margin: 2ch 0;
    padding: 1ch 0;
    border-bottom: 1px solid #333;
    text-align: left;
}

.section:last-child {
    border-bottom: none;
}

.section p {
    margin: 1ch 0;
    line-height: 1.4;
}

.section-title {
    display: block;
    margin-bottom: 0;
}

.section-dashes {
    display: block;
    margin-top: -1ch;
    margin-bottom: 1ch;
}

.ascii-art {
    white-space: pre;
    font-family: monospace;
    color: #5ff7f4;
    margin: 1ch 0;
    text-align: left;
}

.project-meta {
    color: #999;
    font-size: 0.9em;
    margin: 0.5ch 0;
}

.post-content {
    white-space: pre-line;
    font-family: monospace;
    line-height: 1.4;
    margin: 2ch 0;
}

.post-content a {
    color: #5ff7f4;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.navigation {
    margin: 2ch 0;
    padding: 1ch 0;
    border-top: 1px solid #333;
}

.loading {
    color: #999;
}

.error {
    color: #ff6b6b;
}

.form-group {
    margin: 1ch 0;
}

label {
    display: block;
    margin-bottom: 0.5ch;
    color: #5ff7f4;
}

input, textarea {
    width: 100%;
    background-color: #2a2441;
    border: 1px solid #5ff7f4;
    color: white;
    font-family: monospace;
    padding: 0.5ch;
    box-sizing: border-box;
}

textarea {
    height: 10ch;
    resize: vertical;
}

button {
    background-color: #5ff7f4;
    color: #1e192d;
    border: none;
    padding: 0.5ch 1ch;
    font-family: monospace;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #4dd6d3;
}

@media (max-width: 600px) {
    .container {
        padding: 1ch;
    }
    
    .header {
        padding: 1ch;
    }
}

