body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #eaeaea; /* Light grey background */
    color: #333; /* Dark grey text */
}

header, footer {
    background: #007BFF; /* Bright blue background */
    color: #ffffff; /* White text */
    padding: 20px;
    text-align: center;
}

h1, h2, h3 {
    margin: 10px 0;
}

p, a, li {
    margin: 10px 0;
}

a {
    color: #0b2d5b8d; /* Gold links */
}

#assignments, #resources, #work-plan, #updates, #goals, #github, #pdf{
    background: #ffffff; /* White background for content sections */
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}
#mail{
    color: #180701;
}

ul {
    list-style-type: none; /* No bullet points for a cleaner look */
    padding: 0;
}

li {
    padding: 5px 0; /* Spacing between list items */
}

.update {
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

nav {
    background: #3498db;
    border-radius: 8px;
    margin: 20px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Center the navigation items */
    gap: 10px; /* Add space between the items */
    align-items: center;
}


nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background: #125078;
}
