body {
    background-color: #000000; /* Black background */
    color: #00FF00; /* Green text */
    font-family: 'Courier New', Courier, monospace; /* Monospace font */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 80%;
    max-width: 800px;
    text-align: left;
    padding: 20px;
    border: 2px solid #00FF00; /* Green border */
    box-shadow: 0 0 10px #00FF00; /* Green glow */
    flex: 1;
}

a {
    color: #00FF00; /* Green links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: #00FF00; /* Green headers */
}

code {
    background-color: #000000; /* Black background for code */
    color: #00FF00; /* Green text for code */
    padding: 2px 4px;
    border-radius: 4px;
}

button {
    background-color: #000000; /* Black button background */
    color: #00FF00; /* Green button text */
    border: 2px solid #00FF00; /* Green button border */
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #00FF00; /* Green hover background */
    color: #000000; /* Black hover text */
}

.section {
    margin: 20px 0;
}

.projects-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.projects-list li {
    margin: 5px 0;
}

footer {
    width: 80%;
    max-width: 800px;
    text-align: left;
    padding: 20px;
    border-top: 2px solid #00FF00; /* Green border */
    color: #00FF00; /* Green text */
    margin-top: 20px;
}

