@charset "utf-8";
html {
    background-color: rgb(197, 220, 243);
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
body {
    font-family: Verdana, Geneva, sans-serif;
    color: rgb(91, 91, 91);
    background-color: ivory;
    margin: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
header {
    text-align: center;
    padding: 20px;
}
h2 {
    font-size: 1.3em;
}
/*nav {
    padding: 15px;
    color: rgb(252, 158, 129);
    text-align: center;
}
nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding-left: 10px;
    padding-right: 10px;
}
nav a:hover {
    text-decoration: underline;
    color: lightblue;
}
    */
nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li {
   float: left;
   width: 20%;
   display: block; 
}
nav a {
    text-decoration: none;
    display:block;
    background-color: rgb(252, 158, 129);
    line-height: 2.8em;
    text-align: center;
    color: rgb(0, 0, 0);
}
nav a:hover {
    background-color: lightblue;
    color: rgb(0, 0, 0);
}
main {
    padding: 20px;
    clear: both;
    margin-top: 35px;
}
main>img {
    width: 25%;
    padding: 25px;
    float: right;
}
body>footer {
    background-color: rgb(252, 158, 129);
    color: rgba(233, 233, 233, 0.6);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    clear: both;
}
ul {
    list-style-type: square;
}
header img {
    width: 100%;
}
header h1, header h2 {
    text-shadow: 4px 6px 5px gray;
}