/* Set the background color and text color for the entire page */
body {
    background-color: black;
    color: green;
    font-family: Arial, sans-serif;
    margin: 10px; /* Corrected margin */
    padding-bottom: 50px; /* Space for the footer */
}

/* Style for the header section */
header {
    background-color: #333; /* Dark gray header background */
    padding: 10px;
}

/* Center the navigation bar */
nav {
    text-align: center;
}

/* Remove default list styling and padding for the navigation list */
nav ul {
    list-style: none;
    padding: 0;
}

/* Display navigation items inline and add spacing */
nav ul li {
    display: inline;
    margin-right: 20px;
}

/* Style for the navigation links */
nav ul li a {
    text-decoration: none;
    color: white;
}

/* Media query for responsiveness */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

/* Style for the footer section */
footer {
    background-color: #333; /* Dark gray footer background */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
