body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2eded;
}


/* Nav */

nav {
  display: grid;
  grid-template-columns: 1fr 8fr;
  align-items: center;
  padding: 0.3rem 4rem 0.3rem 4rem;
  background-color: #f2eded;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  /* gap: 0.5rem; */
}

nav ul li a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;    
  color: #D5B294;
  padding: 0.5rem 2rem;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid #f2eded;
}

nav ul li a:hover {
  color: #4E5152;
  border-bottom: 1px solid #4E5152;
}

.nav-active {
  color: #4E5152;
  border-bottom: 1px solid #4E5152;
}

.nav-logo {
  height: 4rem;
}


/* Utilities */

.heading{
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
  padding-top: 2rem;
  letter-spacing: -3px;
  line-height: 0.8;

}

.container{
  
  max-width: 1200px;
  margin: 7rem auto 0rem auto;
  padding: 0 2rem;
  min-height: 78vh;
}


.container p, li{
  font-size: 1rem;
  margin: 0;
}

section {
  margin-bottom: 10rem;
}



.glow {
  /* a pink background glow for imgs when hover */
  filter: drop-shadow(0 0 60px #df9191);
  transition: filter 0.3s;
}


/* Footer */
footer {
  text-align: center;
  padding-bottom: 1rem;
}

footer p{
  line-height: 0.8;
  font-size: 0.7rem;
  color: #4E5152;

}

footer a {
  text-decoration: none;
  color: #4E5152;
}


@media (max-width: 768px) {
  nav {
    padding: 0.3rem 2rem 0.3rem 2rem;
  }
  nav ul {
    gap: 0;
  }
  nav ul li a {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .heading {
    font-size: 2rem;
    letter-spacing: -2px;
  }

  .container p, li {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.3rem 0.5rem 0.3rem 0.5rem;
  }
  nav ul li a {
    font-size: 0.65rem;
    padding: 0.5rem 0.3rem;
  }

  .heading {
    font-size: 1.5rem;
    letter-spacing: -1px;
  }

  .container p, li {
    font-size: 0.5rem;
  }
  
  footer p {
    font-size:0.5rem

  }

}