@charset "utf-8";

/* ============================= */
/* HTML Background */
/* ============================= */
html {
    background-color: hsl(210, 30%, 92%);
}

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

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

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

/* ============================= */
/* Navigation */
/* ============================= */
nav {
    background-color: hsl(210, 35%, 45%);
    padding: 15px;
    text-align: center;
}

/* Nav Links */
nav a {
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: white;
}

/* Nav Hover Effect */
nav a:hover {
    text-decoration: underline;
    color: hsl(50, 100%, 85%);
}

/* ============================= */
/* Main Section */
/* ============================= */
main {
    padding-left: 20px;
    padding-right: 20px;
}

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

/* ============================= */
/* Footer */
/* ============================= */
body > footer {
    background-color: hsl(210, 35%, 45%);
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

/* ============================= */
/* Education Page List Marker */
/* ============================= */
ul {
    list-style-type: square;
}