/* Night vision style */
body {
    background-color: #121212; /* nearly black */
    color: #e0e0e0; /* light grey text */
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 0;
}
header {
    background-color: #1b5e20; /* very dark green */
    color: #c8e6c9; /* pale green text */
    padding: 20px;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}
h1 {
    font-size: 3em;
    margin: 0;
}
h2 {
    color: #66bb6a; /* softer green accent */
    font-size: 2em;
    margin-bottom: 10px;
}
h3 {
    color: #81c784; /* lighter green */
    font-size: 1.5em;
    margin-bottom: 5px;
}
p {
    font-size: 1.2em;
    line-height: 1.5;
}
.contact {
    margin-top: 20px;
    font-size: 1.2em;
}
.contact a {
    color: #66bb6a;
    text-decoration: none;
}
footer {
    background-color: #1b5e20;
    color: #c8e6c9;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}