@charset "UTF-8";

/* =========================
   HTML BACKGROUND IMAGE
   ========================= */
html {
    background-image: url("background.jpg"); /* <-- add your background image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* =========================
   BODY STYLES
   ========================= */
body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    margin: 0;                /* remove 25px margin */
    width: 90%;               /* page width */
    margin-left: auto;        /* center page */
    margin-right: auto;
}

/* =========================
   HEADER IMAGE
   ========================= */
header img {
    width: 100%;
    display: block;
}

/* =========================
   HEADINGS
   ========================= */
h1, h2 {
    text-shadow: 4px 6px 5px gray;
}

h2 {
    font-size: 1.3em;
}

/* =========================
   NAVIGATION (5 COLUMNS)
   ========================= */

/* OLD nav styles are intentionally replaced */

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: block;
    width: 20%;
    float: left;
}

nav a {
    display: block;
    background-color: #6699cc;
    line-height: 2.8em;
    text-decoration: none;
    text-align: center;
    color: white;
}

nav a:hover {
    background-color: #336699;
    color: yellow;
}

/* =========================
   MAIN CONTENT
   ========================= */
main {
    padding: 20px;       /* 20px all around */
    margin-top: 35px;
}

/* Only images inside MAIN get resized */
main > img {
    width: 25%;
    padding: 25px;
    float: right;        /* image float right */
}

/* =========================
   FOOTER
   ========================= */
body > footer {
    background-color: #6699cc;
    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;
    clear: both;         /* prevent image spillover */
}

/* =========================
   EDUCATION PAGE LIST
   ========================= */
.education-list {
    list-style-type: square;
}
