* {
  margin: 0;
  padding: 0;
}

body {
  font-family: poppins;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* overflow-x: hidden; */
}

::-webkit-scrollbar {
  overflow: hidden;
  display: none !important;
}

.navbar {
  background-color: aliceblue;
  box-shadow: 0px 2px 5px black,-0px -0px -0px white;
  border-bottom: 5px solid red;
  color: #000;
img{
  width: 210px;
}
  nav li {
    border-radius: 1px;
    padding: 0px 5px;
    transition: 0.9s all ease-in-out;
  }
  .nav-item {
    color: #000 !important;
    font-weight: 500;
    font-size: Clamp(20px, 2vw, 16px);
    padding-left: 30px;
    .nav-link{
      color: #000 !important;
    }
  }

  nav li:hover {
    border-radius: 30px !important;
    background-color: #10101c !important;
    box-shadow: 2px 2px 5px rgb(95, 93, 93);

  }

  .nav form input {
    box-shadow: 0px 0px 5px #82bc23;
    padding: 5px;
  }

  form .login {
    width: fit-content;
    border: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0px 0px 5px gray;
    margin: 0px 10px;
    border-radius: 5px;
    transition: 0.5s all ease-in-out;
  }

  form .login a {
    color: #000000 !important;
    text-decoration: none;
  }

  form .login:hover {
    background-color: #82bc23;
    color: white;
    border-radius: 30px;
    box-shadow: 0px 0px 5px gray;
  }
}
