/* styles.css */
body {
    background-color: #0d0d0d; /* Dark background */
    color: #0f0; /* Bright green text, typical of a terminal display */
    font-family: 'Courier New', Courier, monospace; /* Monospace font for that classic terminal look */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header, main, footer {
    width: 80%;
    margin: auto;
    padding: 20px;
}

header {
    border-bottom: 1px solid #0f0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2 {
    font-weight: normal;
}

footer {
    border-top: 1px solid #0f0;
    text-align: center;
}
