body {
  background-color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  color: white;
  background-color: #185c50;
  width: 100%;
  margin: 0;
  padding: 8px;
  font-size: 20px;
}
.mobile-nav {
  display: none;
}

h1, .rectangle {
  width: 100%
}

.rectangle {
  grid-area: navigation;
  background-color: white;
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.20);
  display: flex;
  justify-content: flex-end;
  align-items:center;
  gap: 20px;
  padding: 12px;
  z-index: 3;
}

.rectangle2 {
  background-color: #c5ded3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  margin-top: -15px;
}

a {
  text-decoration: none;
  color: black;
}

.button {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 18px;
  flex: 0 0 auto;
}

.button span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Lucida Sans", sans-serif;
  font-size: 18px;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'header'
    'navigation'
    'content'
    'footer'; 
}

.header {
  grid-area: header;
}

.rectangle{
  grid-area: navigation;
}

.content {
  grid-area: content;
  margin-top: 15px;
}

.content > p {
  margin-bottom: 7px;
}

@media (max-width: 600px) {
  .rectangle{
    display: none;
  }
   .mobile-nav{
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.20);    
   }

  .mobile-sub{
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  .mobile p{
    font-size: 16px;
    line-height: 1.6;
    margin-left: 10px;
    margin-right: 10px;
  }

   p.imgtext {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 10px;
  }
}

.dropbutton {
  position: relative;
  display: inline-block;
  align-items: center;
}

.dropbutton-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
  z-index: 12;
}

.dropbutton-content a {
  color: black;
  padding: 10px;
  display: block;
  text-align: left;
}

.dropbutton-content a:hover {
  background-color: lightgrey;
}

.dropbutton:hover .dropbutton-content{
  display: block;
}

.sub-dropbutton {
  position: relative;
}

.sub-dropbutton-content {
  display: none;
}

.sub-dropbutton:active .sub-dropbutton-content, 
.sub-dropbutton:hover .sub-dropbutton-content {
  display: block;
}

.sub-dropbutton-content a {
  padding-left: 20px;
}

.ways-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  padding: 40px;
}

.way a {
  padding: 20px;
  border: 2px solid black;
  border-radius: 10px;
  text-align: left;
  font-size: 15px;
  transition: 0.3s;
  display: block;
  color: #185c50;
}

.way a:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.20);
}

li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: #185c50;
  font-weight: bold;
  padding: 10px;
}

p {
  text-align: left;
  padding: 0px 20px;
  line-height: 2;
  margin: 10px 0;
}

h5 {
  text-align: left;
  margin-left: 20px;
}

h2 {
  text-align: left;
  color: #185c50;
  margin-left: 20px;
}

.title {
  text-align: left;
  color: #185c50;
  margin-top: 80px;
  margin-left: 20px;
}

.pagebutton {
  display: inline-block;
  width: fit-content;
  padding: 18px 30px;
  font-size: 18px;
  color: #185c50;
  border: 2px solid #185c50;
  margin-top: 40px;
  margin-bottom: 30px;
  margin-left: 20px;
}

.pagebutton:hover {
  transform: translate(5px);
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.20);
}

.content-head {
  text-align: left;
  padding: 0px 20px;
}

.woodland {
  font-size: 40px;
  position: relative;
}

.rectangle2 img {
  min-width: 200px;
  max-width: 400px;
  align-self: flex-end;
  margin-top: -240px;
}

.content-container {
  background-color: #faebca;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-divider {
    border-bottom: 1px solid #c5ded3;
    padding: 10px;
    margin-bottom: 10px;
}

.centered {
    text-align: center;
    color: #185c50;
    margin: 60px;
    font-weight: bold;
}

.column {
    max-width: 25%;
    text-align: center;
    flex: 1;
}

.column:not(:first-child) {
    border-left: 2px solid white;
}

.green-container {
    background-color: #185c50;
    color: white;
    height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.green-container img {
    max-width: 8rem;
    max-height: 8rem;
}

.green-container h5 {
    text-align: center;
    margin: 2rem;
}