@charset "utf-8";

html {
    background-color: #f0f4f8;  /* Light cool gray-blue – calm, modern */
}

body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    margin: 25px;
}

header {
    text-align: center;
    padding: 20px;
}

h2 {
    font-size: 1.3em;
}

nav {
    background-color: #4a6fa5;  /* Mid-blue – contrasts with ivory */
    padding: 15px;
    text-align: center;
}

nav a {
    padding: 0 10px;
    text-decoration: none;
    color: #f0f8ff;  /* Light off-white for contrast */
}

nav a:hover {
    text-decoration: underline;
    color: #ffd700;  /* Gold on hover */
}

main {
    padding: 0 20px;
}

img {
    width: 25%;
    padding: 25px;
    display: block;
    margin: 0 auto 20px auto;  /* Centers image + space below */
}

body > footer {
    background-color: #4a6fa5;  /* Match nav */
    color: rgba(240, 248, 255, 0.7);  /* Semi-transparent light color */
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

/* For education.html list – square marker (not default disc) */
ul {
    list-style-type: square;
}