@charset "UTF-8";
html {
    background-color: hsl(204, 73%, 80%);
    background-image: url(background-image.jpg);
}

body{
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

h1{
    text-shadow: gray 4px 6px 5px;
}

h2 {
    font-size: 1.3em;
    text-shadow: gray 4px 6px 5px;
}

/*nav {
    background-color: hsl(204, 72%, 69%);
    padding: 15px;
    text-align: center;
} */

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

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

nav a {
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: rgb(70, 70, 70);
    display: block;
    background-color: hsl(204, 72%, 69%);
    line-height: 2.8em;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    text-decoration: underline;
    color: black;
    background-color: hsl(204, 48%, 60%);
}

main {
    padding: 20px;
    margin-top: 35px;
}

main > img {
    width: 25%;
    padding: 25px;
    float: right;
}

footer {
    background-color: hsl(204, 72%, 69%);
    color: rgba(102, 102, 102, 0.8);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
}

.education li {
    list-style-type: square;
}

.education ul li {
    list-style-type: circle;
}

header img {
    width: 100%;
    height: auto;
}

body > footer {
    clear: both;
}