body {
  font-family: sans-serif;
  margin: auto;
  max-width: 90%;
}

.text {
  line-height: 1.25rem;
}

.logo {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #92D050
}

/* Navigation bar */

.page_title {
  color: #00B050;
  font-size: 2rem;
  font-weight: 500;
}

nav {
  max-width: 880px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #e8e8d0;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  color: #8c8c8c;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav li a.selected {
  background-color: beige;
  /*
  color: black;
  font-size: 1.1rem;
  */
}

/* Change the link color to #111 (black) on hover */
nav li a:hover {
  background-color: beige;
}

/* The main section */

main {
  font-size: 1.1rem;
  color: #666666;
  max-width: 850px;
  padding: 15px;
  margin: 0 0;
  background-color: beige;
}

main#first_page {
  text-align: center;
}

main#first_page img {
  max-width: 100%;
}

main h3 {
  font-weight: normal;
  font-size: 1.25rem;
}

/* Lead image on right and text on left */

.image_text_container {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.image_text_container img {
  max-width: 100%;
}

.image_text_container ul {
  margin-top: 0;
  list-style-position: inside;
  padding: 0;
}

.image_text_container div {
  margin-left: 5%;
}

.image_text_container div br {
  margin-bottom: 0.75rem;
}

/* Row of three images */

.image_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2%;
}

.image_row img {
  max-width: 100%;
}

/* Contact Map */

#map {
  width: 100%;
  height: 450px;
  border-width: 2px;
  border-color: #cccccc;
  border-style: solid;
}

/* Footer */

footer {
  color: #8c8c8c;
  background-color: #e8e8d0;
  padding: 7px 15px;
  max-width: 850px;
}

/* Create a sticky footer */
/* https://css-tricks.com/couple-takes-sticky-footer/ */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}