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

/* Dark Theme Body and Font */
body {
    background-color: #121212; /* Very dark gray */
    color: #e0e0e0; /* Light gray for text */
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
header {
    width: 100%;
    text-align: center;
    padding: 2em 0;
}

header h1 {
    font-size: 2.5em;
    color: #00ff00; /* Neon green for a terminal-like feel */
}

/* Main Content Area */
main {
    width: 90%;
    max-width: 800px;
    padding: 2em 0;
}

/* Blog Post Styling */
article {
    background-color: #1e1e1e; /* Slightly lighter dark gray for contrast */
    border: 1px solid #333;
    padding: 1.5em;
    margin-bottom: 2em;
    border-radius: 8px;
}

.blog-title {
    color: #e0e0e0;
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

.blog-date {
    font-style: italic;
    color: #aaa;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.blog-content p {
    margin-bottom: 1em;
}

/* Simple Hover Effect for Links (if you add them later) */
a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Optional: Add a simple footer */
footer {
    width: 100%;
    text-align: center;
    padding: 1em 0;
    color: #555;
    font-size: 0.8em;
}
