body {
    background-color: #000;
    color: #0F0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    padding: 20px;
    background-color: #111;
    border-bottom: 2px solid #0F0;
}

h1, h2, h3 {
    font-size: 2em;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #0F0;
}

nav {
    background-color: #222;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #0F0;
}

nav a {
    color: #0F0;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #0F0;
    color: #000;
}

section {
    padding: 40px;
    border-top: 2px solid #0F0;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    position: relative;
}

footer {
    width: 100%;
    background-color: #111;
    border-top: 2px solid #0F0;
}

p.footer-text {
    margin: 0;
    font-size: 0.9em;
}

a.footer-link {
    color: #0F0;
    text-decoration: none;
    border-bottom: 1px dashed #0F0;
    transition: border-bottom 0.3s;
}

a.footer-link:hover {
    border-bottom: 1px solid #0F0;
}

