* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

#navbar {
  padding: 10px 0px;
  box-shadow: 2px 2px 5px lightgray;
}
.nav-item {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-item .logo h1 {
  font-size: 39px;
  color: #0000119c;
  font-family: "Fjalla One", sans-serif;
}

.nav-containt ul {
  display: flex;
  list-style: none;
}
.nav-containt ul li {
  margin: 5px 2px;
}
.nav-containt ul li a {
  text-decoration: none;
  font-size: 26px;
  margin-left: 14px;
  color: #0000119c;
}
.nav-containt ul li a:hover {
  color: #eb1076;
  transition: 0.6s;
}
.burger {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 19px;
  padding: 3px;
  border-radius: 8px;
}
.line1 {
  width: 20px;
}
.line2 {
  width: 30px;
}
.line3 {
  width: 40px;
}
.line {
  background-color:#000342;
  height: 4px;
  margin: 5px 1px;
}

@media only screen and (max-width: 576px) {
  html,
  body {
    overflow-x: hidden;
  }
  .nav-item {
    flex-direction: column;
  }
  .nav-containt {
    height: 288px;
    transition: all 0.7s ease-out;
  }
  .nav-containt ul {
    flex-direction: column;
  }
  .burger {
    display: block;
  }
  .h-nav {
    height: 10px;
  }
  .v-class {
    opacity: 0;
  }
}
@media only screen and (min-width: 577px) and (max-width: 990px) {
  html,
  body {
    overflow-x: hidden;
  }
  .nav-item {
    flex-direction: column;
  }
  .nav-item .logo h1 {
    text-align: center;
  }
  .nav-containt ul {
    justify-content: center;
  }
  .nav-containt ul li a {
    font-size: 22px;
  }
}
