*{
  box-sizing: border-box;
}
img {
  width: 100%;
}
body {
  background-color: #edeeef;
  color: #555;
  margin: 0;
  font-family: Lato, sans-serif;
}
#wrapper {
display: grid;
grid-auto-rows: minmax(0px, auto);
grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}
#logo-image {
  height: 100px;
  width: 100px;
  padding: 10px;
}
nav {
  background-color: #edeeef;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
nav ul {
  display: flex;
  flex-flow: column nowrap;
  padding-left: 0;
  padding-right: 0;
  margin: 0px;
}
nav ul li {
  width: 100%;
  list-style-type: none;
}
nav ul li a {
  width: 100%;
  text-decoration: none;
  color: #555;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
nav a: hover{
  background-color: white;
}
main {
  background-color: #fff;
  padding: 20px;
  grid-column: 3 / -2;
  grid-row: 1 / 2;
}
footer {
  background-color: #2d5ba6;
  color: #fff;
  font-size: 0.5 rem;
  padding: 20px;
  grid-column: 3 / -2;
  grid-row: 2 / 3;
  text-align: center;
}
h2{
  border-bottom: 1px black solid;
}
section {
  float: right;
  width: 33%;
  padding: 20px;
}

/* Navigation Elements Go Here */
.education {
float:right;
}
#education {
  background-image: url("education.jpg")
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  grid-row: 3 / 4;
  grid-column: 5 / 6;
}
#earthview{
  background-image: url("earthview.jpg")
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  grid-row: 3 / 4;
  grid-column: 5 / 6;
}
#eclipse {
  background-image: url("eclipse.jpg")
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  grid-row: 3 / 4;
  grid-column: 5 / 6;
}
#solarsystem {
  background-image: url("solarsystem.jpg")
}
/* Styling Elements Go Here */



/* Media Query of 960 and less goes here */
@media only screen and (max-width: 960px)
