* {
  box-sizing: border-box;
}
li {
  list-style: none;
}

a {
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 10px;
}
.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 5px;
  margin-top: -40px;
}

.nav-link{
  font-size: 1.6rem;
  font-weight: 400;
  color: #808080f5;
}

.nav-link:hover{
  color: #808080f5;
}

.nav-logo {
  font-size: 2.1rem;
  font-weight: bold;
  color: #808080f5;
  margin-bottom: 50px;
}
/*end Navbar*/
.header {
  overflow: visible;
  background-color: white;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

/* Style the logo link */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: #808080f5;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}
html {
  height: 100%;
  margin: 0;
}

.bgimg {
  background-color: #808080f5;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.bakk {
  background-color:#808080f5 ;
}
/* Hide the links inside the navigation menu (except for logo/home) */

.body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.footer {
  background-color: #808080f5;
}
.xd {
  background-color: #808080f5;
  color: white;
  padding: 5px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: lighter;
  font-size: small;
}


@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}
#footer {
  background-color: #808080f5;
  color:white;
  padding: 5px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 5rem;
      flex-direction: column;
      background-color: #fff;
      width: 100%;
      border-radius: 5px;
      text-align: center;
      transition: 0.3s;
     z-index: 1;
     margin-top: -40px;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
  .nav-menu.active {
      left: 0;
  }

  .nav-item {
      margin: 2.5rem 0;
  }

  .hamburger {
      display: block;
      cursor: pointer;
      margin-top: -70px;
  }
  .nav-logo{
    margin-top: -10px;
    font-weight: bold;
    margin-left: -15px;
  }

}