@charset "utf-8";

html {
  background-image: url("background.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}


/* 4) Body styles */
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;
}

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


/* 5) Header section */
header {
  text-align: center;
  padding: 20px;
}

header img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
}


/* 6) h2 */
h2 {
  font-size: 1.3em;
}

/* 7) Nav section */
nav {
  background-color: rgb(205, 220, 230);
  padding: 15px;
  text-align: center;
}

/* 8) a elements that are children of nav */
nav > a {
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  color: rgb(40, 60, 80);
}

/* 9) hover rule */
nav > a:hover {
  text-decoration: underline;
  color: rgb(120, 60, 30);
}

/* 10) main padding */
main {
  padding: 20px;
  margin-top: 35px;
}


/* 11) img styles */
main > img {
  width: 25%;
  padding: 25px;
  float: right;   /* requirement #8 */
}



/* 12) body > footer */
body > footer {
  background-color: rgb(205, 220, 230);
  color: rgba(40, 40, 40, 0.6);
  font-weight: bold;
  font-size: 0.9em;
  line-height: 3em;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  clear: both;

}

/* 13) Change list marker on education page list */
.school-list {
  list-style-type: square;
}
