@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  padding: 0;
  margin: 0;
}

.navbar {
  width: 80%;
  height: 4.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins";
  font-weight: 400;
  border-radius: 40px;
  margin: 1.7rem auto;
  padding: 0 4rem;
  gap: 2rem;
  /* background-color: blueviolet; */
}

.nav-right ul {
  font-size: 18px;
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-left img {
  padding-top: 12px;
  width: 130px;
  height: auto;
}

.navbar a {
  text-decoration: none;
  color: white;
}

@media (max-width: 728px) {
  .navbar {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 1.3rem;
    border-radius: 80px;
    gap: 4px;
  }

  .nav-right ul {
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: clamp(.8rem, 2vw, 1.84rem);
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    font-size: clamp(.6rem, 2vw, 1.2rem);
  }
}

@media (max-width: 380px) {
  .navbar {
    font-size: clamp(.4rem, 2vw, 1rem);
  }
}
