@charset "utf-8";

html {
  background-color: hsl(300, 40%, 95%);
  background-image: url(purplebackground.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

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

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

h2 {
  font-size: 1.3em;
}

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

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

nav li{
    float:left;
    width: 20%;
    display: block;
}
nav a{
    text-decoration: none;
    display: block;
    background-color: hsl(0, 0%, 90%);
    line-height: 2.8em;
    text-align: center;
    color: rgb(60, 60, 60);

}
nav a:hover {
    background-color: rgb(140, 125, 125);
    color: ivory;
}

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

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

header img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    padding: 0;
}


body > footer {
    clear: both;
    background-color: hsl(300, 30%, 90%);
    color: rgba(80, 40, 80);
    font-weight: bold;
    font-size: 0.9em;
    line-height: 3em;
    text-align: center;
    margin-top: 10px;
    padding:10px
}

ul {
    list-style-type: square;
}