@charset "utf-8";

/* General Styles */
html {
    background-color: #f0f0f0; /* soft background */
}

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

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

/* Navigation */
nav {
    background-color: #4682B4; /* nice contrast with ivory */
    text-align: center;
    padding: 15px;
}

nav a {
    padding: 0 10px;
    text-decoration: none;
    color: white;
}

nav a:hover {
    text-decoration: underline;
    color: yellow;
}

/* Main */
main {
    padding: 0 20px;
}

/* Headings */
h2 {
    font-size: 1.3em;
}

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

/* Footer */
body > footer {
    background-color: #4682B4;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

/* List styling on education page */
ol {
    list-style-type: square; /* example: non-default */
}
