/* Add a black background color to the top navigation */
.topnav {
  position: relative;
  background-color: #2a5121;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #f2f2f2;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #227500;
  color: #f2f2f2;
}

/* Hide the icon that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Style for page content */
.content {
  padding: 20px;
  font-size: 28px;
  font-family: "Lato", sans-serif;
}

/* When the screen is less than 800 pixels wide */
@media screen and (max-width: 800px) {
  /* Hide all links, except for the selected tab */
  .topnav a:not(.active) {
    display: none;
  }

  /* Show the icon that should open and close the topnav */
  .topnav a.icon {
    float: right;
    display: block;
  }
}

.header {
    position: relative; /* This was set to 'fixed' and that was making things display incorrectly */
    display: flex;
    align-items: flex-start;
    padding: 10px 20px;
    vertical-align: top;
}

.logo-name {
    display: flex;
    align-items: center;
}

.name h1 {
    font-size: 28px;
    font-family: "Lato", sans-serif;
    color: #2a5121; 
    margin-left: 15px;
}

  .topnav.responsive a.icon {
    position: relative;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
}

.mapDescription {
    font-family: 'Lato';
    float: right;
}

