* {
  margin: 0;
  padding: 0;
  background-color: #95ac86;
  margin: auto;
}

h1, h2, h3, p {
  font-family: Verdana, sans-serif;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  color: #3f3f3f;
}

h1 {
  padding-bottom: 20px;
}

p {
  padding-top: 20px;
  padding-bottom: 20px;
}

li, a, button {
  font-family: Verdana, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #3f3f3f;
  text-decoration: none;
}

.wrapper {
  width: 75%;
  margin: 0 auto;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10%;
  padding-bottom: 20px;
}

.logo {
  margin-right: auto;
  padding: 20px;
  max-width: 220px;
}

.nav_links {
  list-style-type: none;
  margin: 0;
  padding: 20px;
  overflow: hidden;
}

.nav_links li {
  float: left;
}

.nav_links li a {
  transition: all 0.3s ease 0s;
  display: inline-block;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
}

.nav_links li a:hover:not(active) {
  color: black;
}

.active {
  color: white;
}

.banner-area {
  background-image: url(../images/grass_banner.png);
  background-size: cover;
  background-position: center center;
  top: 225px;
  height: 30vh;
  width: 100%;
  position: fixed;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Verdana, sans-serif;
  font-size: 35px;
  font-weight: bold;
  background-color: rgba(59, 78, 59, 0);
  color: #f57b2a;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.content-area {
  padding-top: 20px;
  width: 100%;
  height: 800px;
  position: relative;
  top: 500px;
  border-style: solid;
  border-color: white;
  border: 2px;
}

footer {
  display: flex;
  justify-content: space-between;
  font-size: smaller;
  padding-top: 5%;
}

.services {
  list-style: none;
  display: table;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}

.column {
  padding-top: 20px;
  float: left;
  max-width: 48%;
  -webkit-padding-end: 2%;
          padding-inline-end: 2%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

@media only screen and (max-width: 720px) {
  header {
    position: relative;
    display: block;
    padding: 10px;
  }

  .logo {
    display: block;
  }

  .wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .nav_links {
    margin-bottom: 0px;
  }

  .nav_links li {
    text-align: center;
    float: none;
  }

  .nav_links li a {
    display: block;
  }

  .banner-area {
    position: relative;
    top: auto;
  }

  .content-area {
    position: relative;
    top: auto;
  }

  footer {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */