@charset "utf-8";

/* 3. Background color for the browser window */
html {
    background-color: rgb(230, 230, 240); /* soft, easy-on-the-eyes color */
}

/* 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. Navigation section */
nav {
    background-color: rgb(150, 160, 200); /* compliments html bg + contrasts ivory */
    padding: 15px;
    text-align: center;
}

/* 8. Links inside nav */
nav a {
    padding: 0 10px;
    text-decoration: none;
    color: white; /* contrasts well with nav background */
}

/* 9. Hover effect for nav links */
nav a:hover {
    text-decoration: underline;
    color: rgb(230, 230, 240); /* lighter shade for hover contrast */
}

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

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

/* 12. Footer styling */
body > footer {
    background-color: rgb(150, 160, 200); /* matches nav */
    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. Custom list marker for education page */
ul.education-list {
    list-style-type: square; /* change to any non-default marker */
}
