body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Header Styling (stays the same) */
#header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: top 0.3s;
    z-index: 1000;
}

#header h1 {
    margin: 0;
}

#header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

/* Content Area (stays the same) */
main {
    padding-top: 100px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* New Footer Styling */
footer {
    background-color: #444; /* A nice gray color */
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px; /* Add some space between the content and the footer */
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
img {
  max-width: 100%;
  height: auto;
  display: block; /* optional but recommended */
}