html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: #8f6e49;
  font-family: "Red Hat Display", sans-serif;
  color: white;
}

.navbar {
  display: flex;
  height: 100px;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #af8c64;
}

.head-text {
  justify-self: flex-start;
  margin-left: 20px;
  font-size: 20px;
  font-family: "Pinyon Script", cursive;
}

.nav {
  display: flex;
 margin-left: auto;
  margin-right: 20px;
  align-items: center;
  gap: 80px;
}

.nav a {
  text-decoration: none;
  font-size: 25px;
  color: white;
  font-weight: bold;
}

.nav a:hover {
  transition: 0.3s ease-in-out;
  color: rgba(218, 135, 12, 0.7);
  font-size: 28px;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  text-decoration: 4px solid black underline;
}

.title h1 {
  font-size: 80px;
}

.feature-group {
  margin: 200px 20px;
}

.feature-group h1 {
  font-size: 40px;
  margin: 0;
  text-decoration: 4px solid black underline;
}

.feature-group p {
  font-size: 25px;
  margin: 0px 50px;
  margin-top: 20px;
  line-height: 40px;
}

.feature-container {
  border: 5px solid white;
  padding: 30px;
  padding-top: 10px;
  background-color: #725839;
  margin: 20px 5%;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  border-top: 2px solid black;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3; /* ABOVE overlay and background */
}


#footer-r {
  margin-left: auto;
  margin-right: 20px;
}

#footer-l {
  margin-left: 20px;
}

footer a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}


@media (max-width: 900px) {
  .navbar {
        height: 120px;
        flex-direction: column;
    }
    
    .head-text {
        font-size: 15px;
        margin: auto;
          margin-top: 5px;
          text-align: center;
          margin-bottom: 0;
    }

    .nav {
      margin: 0px 0px;
      gap: 40px;
      justify-content: center;
    }
    .nav a {
        font-size: 20px;
    }

    .nav a:hover {
      font-size: 22px;
    } 

    .title h1 {
      font-size: 40px;
      text-align: center;
    }

    .feature-container{
      padding: 5px;
    }
    .feature-group {
      margin: 100px 20px;
    }

    .feature-group h1{
      text-align: center;
      font-size: 25px;
    }

  
    .feature-group p {
      font-size: 20px;
      line-height: 28px;
      margin: 20px 5px;
    }
}