body {                          /*Edits the Main Body*/
  background-color: #0B2545;
}

header {                        /*Edits the Main Header*/
  background-color: #8DA9C4;
  margin: 2%;
  padding: 1%;
  border: 1px white solid;
}

ul {                            /*Edits the Main Navigation Bar*/
  padding: 0 0 0 0;
  list-style: none;
  background: #134074;
  margin: 2%;
  border: 1px white solid;
  text-align: center;
}

ul li {                          /*Edits the Navigation Bar*/
  display: inline-block;
  position: relative;
  line-height: 21px;
  text-align: left;
}

ul li a {                        /*Edits the main links of Navigation Bar*/
  display: block;
  padding: 8px 25px;
  color: white;
  text-decoration: underline;
}

ul li a:hover {
  color: #fff;
  background: #8DA9C4;
}

ul li ul.dropdown {                /*Edits the contents of Dropdown list*/
  min-width: 125px;
  background: #0B2545;
  display: none;
  position: absolute;
  z-index: 999;
  left: 0;
}

ul li:hover ul.dropdown {          /*Edits the main Dropdown list*/
  display: block;
}

ul li ul.dropdown li{
  display: block;
  text-align: center;
}

.body_image {
  float: left;
  margin: 8% 0 0 6%;
}
                                    /*Edits the background of content*/
.body_text {
  color: black;
  background-color: #8DA9C4;
  text-align: center;
  margin: 10% 25% 0 25%;
  padding: 0.80%;
  border-radius:  18% 18% 18% 18%;
}

.text {
  margin: 5% 0 0 1%;
}

.author {
  text-align: center;
}

h1 {
  text-decoration: underline;
  font-weight: bold;
  color: #7F0028;
  text-align: center;
}

h3 {
  font-style: italic;
  font-weight: bold;
  text-align: center;
}

footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #134074;
  text-align: center;
  border: 1px white solid;
}

footer a {
  margin: 0 8% 0 8%;
  color: white;
  font-weight: bold;
}

footer a:hover {
  color: #7F0028;
}