* {
    margin: 0%;
    padding: 0%;
    font-family: "Poppins", sans-serif;

}
  .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }

  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }

  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

.header {
    min-height: 100vh;
    width: 100%;
    background-image: url(./assets/LightTheme.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: #030303;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #00000042;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

#menuBtn{
  display: none;
  margin: 0px;
  padding: 0px;
  background: inherit;
  border-style: none;
}
#menuBtnn{
  display: none;
  margin: 0px;
  padding: 0px;
  background: inherit;
  border-style: none;
}

@media (min-width: 320px) and (max-width: 810px){
  .header #navlinks{
    display: none;
  }
  #menuBtn{
    display: block;
  }
}
