body {
  margin: 0;
  font-family: "Lato", sans-serif;
}
/*The following deals with the top image on the home page and the text on it.  It also effects the menu and content below it.*/
.topPic img {
   max-width:100%;
   height:auto;
   max-height:100%;
}

.text-wrapper {
    width: 100%;
    position: relative;
    margin-top: -13%;
}

.text-wrapper h1 {
    text-align: left;
    margin-left: 200px;
    color: aliceblue;
    font-size: 5vw;
    font-family: 'Roboto', sans-serif;
    text-shadow: 2px 2px black;
}
/*The following manages the way the menu works and looks.*/
.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #f1f1f1;
  position: absolute;
  height: 100%;
  overflow: auto;
}

.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
}
 
.sidebar a.active {
  background-color:#116AD5;
  color: white;
}

.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

/*The following controls the main content area.*/
div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 1000px;
}


@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {
      float: left;
    }
    
  div.content {
      margin-left: 0;
    }
    
.text-wrapper h1 {
    text-align: center;
    margin-left: auto;
    color: aliceblue;
    font-size: 5vw;
    font-family: 'Roboto', sans-serif;
    }
}



@media screen and (max-width: 500px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
    
.text-wrapper h1 {
    text-align: center;
    margin-left: auto;
    color: aliceblue;
    font-size: 6vw;
    font-family: 'Roboto', sans-serif;
    background-color:#4CAF50;
    }    
.text-wrapper {
    width: 100%;
    position: relative;
    margin-top: -30%;
}
}