body {
    font-family: monospace, sans-serif; /* or a modern, techy font */
    margin: 0;
    padding: 0;
    background-color: #000; /* Dark background for a digital feel */
    color: white; /* Green text, reminiscent of old terminals */
    line-height: 1.4;
}

header {
    background-color: #111;
    padding: 1em;
    text-align: center;
    border-bottom: 1px solid #222;
}

main {
    padding: 20px;
    max-width: 700px; /* Adjust for desired text window width */
    margin: 0 auto;
}

article {
    background-color: #111;
    padding: 20px;
    border-radius: 3px; /* Subtle rounding of corners */
}

p {
    margin-bottom: 1em;
}

a {
    color: #0ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 1em;
    font-size: 0.8em;
    color: #888;
    border-top: 1px solid #222;
}
