/* To-Do: Finish Footer, make mobile compatible */
html, body {
    width: 100%;
    height: 100%;
    background-color:#e4e4e4;
    }
    body {
        margin: 0;
        padding: 0;
        }
/* NavBar */
ul {
  list-style-type: none;
  background-color: #ececec;
  overflow: hidden;
  padding: 1%;
  margin: 0%;
}

li {
  display: inline;
}

li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 200%;
  padding: 2.5%;
  
} 

li a:hover {
  background-color: #9c9c9c;
}

#navBarParent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: right;
  box-shadow: 0px 2px 5px rgb(0, 0, 0, .5);
  max-height: 300px;
}

#navBarChild {
  flex-basis: 100%;
  float: right;
}

#navBarImage {
 float: left;
 max-width: 7%;
 margin: 0%;
 padding: 0%;
 flex-basis: 10%;
}

#imageButton:hover {
  background-color: #ececec;
}
/* PageText */
#header {
  font-size: 500%;
  background-color: rgb(152, 155, 206);
  padding-bottom:2%;
  padding-left: 1%;
  margin-top:0%;
  padding-top:1%;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
  text-align: center;
}
/* NewsSections */

h2 {
    font-size: 200%;
}
.latestNews {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto;
  height: auto;
}

.newsImage {
  width: 50%;
  height: 65%;
  border-radius: 1em;
  float: left;
}

.newsSection  {
  flex-basis: 100%;
  text-align: center;
  background-color: rgb(170, 170, 170);
  margin: 1%;
  padding: 1%;
  padding-top: .1%;
  padding-bottom: 1%;
  border-radius: 1em;
}

.newsButton {
  font-size: 150%;
  border: 10px solid rgb(255, 255, 255);
  border-radius: 1em;
  padding-left: 5%;
  padding-right: 5%;
}

.newsText {
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin-left: 2%;
  margin-right: 1%;
  
}
