@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "montserrat", "system-ui";
  background-color: rgb(255, 255, 255);
}

/* Navbar start */
.logo {
  width: 50px;
  height: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background-color: white;
  font-weight: 500;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}
.nav-links a:hover {
  opacity: 0.7;
}
hr {
  border: none;
  height: 1px;
  background-color: #000000;
}
/* Navbar end */
/*about section */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}
.about h1 {
  font-size: 50px;
  padding: 2rem;
}
.about h2 {
  font-size: 30px;
  padding: 6rem;
}
.about p {
  font-size: 18px;
  line-height: 2rem;
}
/*about section end*/
/* footer start */
footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 20px;
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 1.75rem;
  list-style: none;
  flex-direction: column;
  line-height: 5rem;
}
.footer-nav {
  display: flex;
  gap: 5rem;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer a {
  color: white;
  text-decoration: none;
  display: flex;
  gap: 1.5rem;
}
.footer a:hover {
  opacity: 0.7;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 0.75;
  font-size: 1.5rem;
  color: white;
}
/* footer  end */
@media (max-width: 820px) {
}

@media (max-width: 480px) {
  .about h1 {
    font-size: 30px;
    padding: 1rem;
  }
  .about h2 {
    font-size: 20px;
    padding: 2rem;
  }
  .about p {
    font-size: 15px;
    line-height: 1.5rem;
  }
  .food-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
  }

  .food-nav-links a {
    font-size: 0.75rem;
    padding: 0.2rem;
  }
  footer {
    font-size: 13px;
  }
}
