/* style.css */
body {
    font-family: sans-serif; /* Sets a general font */
    margin: 0;
    padding: 0;
    line-height: 1.6; /* Improves readability */
    background-color: #f4f4f4; /* Light background for better contrast */
}

header {
    background-color: #333;
    color: white;
    padding: 1em;
    text-align: center; /* Centers header content */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;  /* Styling for the navigation */
    overflow: hidden; /* Important for responsive design, hides overflow */

}

nav li {
    float: left; /* Makes navigation items horizontally aligned */
}

nav a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Style active link */
nav a:hover {
  background-color: #ddd;
  color: black;
}


section {
    padding: 2em;
    margin-bottom: 2em;
    background-color: white;
    border-radius: 5px; /* Adds rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

h1, h2 {
    color: #333;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em;
}

@media (max-width: 768px) {
    nav ul {
        /* Adjust layout for smaller screens */
        text-align: center;  
        flex-direction: column;
        flex-wrap: wrap;
    }
    nav li {
        float: none;
    }
}