header{
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items:center;
  justify-content: space-between;
  padding: 2rem 2rem 2rem 2rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}

.fotografie-bonita-header-link{
  font-size: 1.5rem;
  font-weight: 300;
}

.navigation-list{
  display: flex;
  flex-direction: row;
  gap: 1.5rem;

}

.nav-link{
  align-items: center;
  display: flex;
  height: 3rem;
  
}

.nav-link:hover{
  color: rgb(150, 150, 150);
}

.hamburger{
  display: none;
}

.hamburger-icon{
  display: none;
}


@media (max-width: 767px) {

  .hamburger{
    display: flex;
  }

  .hamburger-icon{
    display: flex;
    justify-content: end;
  }

  .hideMobile{
    display: none;
  }

}

