/*Style for the general page and text*/
body {
    background-color: white
}

h1 {
    color: black;
    font-family: Arial;
    font-size: 50px;
    text-align: center;
}

h2 {
    color: black;
    font-family: Arial;
    font-size: 30px;
    text-align: center;
}


/*Style for top nav on about us page*/
.topnav {
    overflow: hidden;
    background-color: #629c44;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #325320;
    color: white;
  }

  /* Style the search box inside the navigation bar */
  .topnav input[type=text] {
    float: left;
    padding: 6px;
    border: none;
    margin-top: 8px;
    margin-right: 16px;
    font-size: 17px;
  }
  
  /* Style the "active" element to highlight the current page */
  .topnav a.active {
    background-color: #325320;
    color: white;
  }

  
  /* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
  @media screen and (max-width: 600px) {
    .topnav a, .topnav input[type=text] {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .topnav input[type=text] {
      border: 1px solid #ccc;
    }
  }

.aboutus_text{
  font-family: Arial;
  text-align: left;
}

/*Style for about us nav*/
.aboutus_nav {
    overflow: hidden;
    background-color: #629c44;
    width: 15%;
  }
  
  /* Style the links inside the navigation bar */
  .aboutus_nav a {
    float: center;
    display: block;
    color: white;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial;
  }
  
  /* Change the color of links on hover */
  .aboutus_nav a:hover {
    background-color: #325320;
    color: white;
  }
  
  /* Style the "active" element to highlight the current page */
  .aboutus_nav a.active {
    background-color: #325320;
    color: white;
  }
  

  
  /* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
  @media screen and (max-width: 600px) {
    .aboutus_nav a {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
  }