body {
    font-family: 'Geist Sans', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 800px;
    /* Adjust as needed */
    margin: 0 auto;
    /* Centers the content */
    padding: 20px;
    /* Default padding for containers */
}

header.container {
    padding-bottom: 0;
    /* Reduce bottom padding of header */
}

header.container h1 {
    font-size: 1.8em; /* Site header font size - reduced from 2.0em */
    margin-bottom: 0;
    /* Remove bottom margin if any, to help with gap */
}

header.container h1 a:hover {
    text-decoration: none;
    /* Remove underline on hover for header link */
}

main.container {
    padding-top: 10px;
    /* Reduce top padding of main content */
}

/* Basic link styling */
a {
    color: #fff;
    /* Changed from #7df9ff to white */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* Remove default list styling if needed, or style as per preference */
ul,
ol {
    padding-left: 20px;
}

li {
    margin-bottom: 0.5em;
}

/* Style for the introduction on the home page */
#introduction p {
    font-size: 1.1em;
}

/* Style for the article content */
.prose {
    /* This class was in post_page.templ, let's give it some basic styling */
    /* Add any specific prose styling here if needed, e.g., for paragraphs, blockquotes */
}

.prose h1 {
    font-size: 1.6em; /* Post title font size - smaller than site header, reduced from 1.8em */
    margin-top: 0.5em;
    /* Reduced top margin for post title */
}

/* Footer styling */
footer.container {
    /* Targeting the footer specifically if it uses .container */
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
    /* Lighter gray for footer text */
    padding-top: 40px;
    /* Keep some space above footer */
    padding-bottom: 20px;
}