@charset "UTF-8";

/* 3. Background color for the browser window */
html {
    background-color: hsl(205, 25%, 45%); /* muted slate blue */
}

/* 4. Body styles */
body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    margin: 25px;
}

/* 5. Header section */
header {
    text-align: center;
    padding: 20px;
}

/* 6. h2 elements */
h2 {
    font-size: 1.3em;
}

/* 7. Nav section */
nav {
    background-color: hsl(205, 35%, 25%); /* darker complementary slate */
    padding: 15px;
    text-align: center;
}

/* 8. Anchor elements inside nav */
nav a {
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: hsl(40, 60%, 88%); /* warm cream contrasts with dark nav */
}

/* 9. Hover state for nav links */
nav a:hover {
    text-decoration: underline;
    color: hsl(35, 80%, 65%); /* warm gold accent */
}

/* 10. Main element */
main {
    padding-left: 20px;
    padding-right: 20px;
}

/* 11. Image element */
img {
    width: 25%;
    padding: 25px;
}

/* 12. Footer (only direct children of body) */
body > footer {
    background-color: hsl(205, 35%, 25%);
    color: rgba(102, 102, 102, 0.6);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

/* 13. List marker on education page list (and any other ul) */
ul {
    list-style-type: square;
}
