
/* ============================= */
/* HTML Background Image */
/* ============================= */
html {
    background-image: url("background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

    /* UPDATED */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ============================= */
/* Header Image */
/* ============================= */
header img {
    width: 100%;
}

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

/* ============================= */
/* Navigation */
/* ============================= */

/* Comment out your old nav{} rule if it exists */

/* Nav UL */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav LI */
nav li {
    display: block;
    width: 20%;
    float: left;
}

/* Nav Links */
nav a {
    display: block;
    background-color: hsl(210, 35%, 45%);
    line-height: 2.8em;
    text-decoration: none;
    text-align: center;
    color: white;
}

/* Nav Hover */
nav a:hover {
    background-color: hsl(50, 80%, 60%);
    color: black;
}

/* ============================= */
/* Main Section */
/* ============================= */
main {
    padding: 20px;
    margin-top: 35px;
}

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

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

/* ============================= */
/* 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;

    /* REQUIRED CLEAR */
    clear: both;
}