*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  header {
    background-color: #262626;
  }

  body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 100vH;
    width: 100%;
    margin: 0;
    padding: 0;
    background-image: url(../homepage/moviebackground.jpg);
    backdrop-filter: brightness(10%);
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  li {
    list-style: none;
  }
  
  a{
    color: white;
    text-decoration: none;
  }
  
  .navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }
  
  .nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  
  }
  .nav-branding{
    font-size: 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  .nav-link {
    transition: 0.7s ease;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .nav-link :hover {
    color: aquamarine;
  }
  .hamburger{
    display: none;
    cursor: pointer;
  }
  .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
  }

  .impressumInformationenDiv{
    margin: 2rem;
    background-image: url(../homepage/moviebackground.jpg);
    backdrop-filter: brightness(10%);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .ipressuminf{
    background-color: rgb(182, 180, 180);
  }

  @media(max-width:768px)
  {
    .hamburger{
      display: block;
    }
  
    .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{
      border-top: 2px solid rgba(84, 84, 84, 0.5);
      position: fixed;
      left: -100%;
      top: 70px;
      gap: 0;
      flex-direction: column;
      background-color: #262626;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      z-index: 999;
    }
  
    .nav-item {
      margin: 16px 0;
    }
    .nav-menu.active {
      left: 0;
    }

    
  }


/* Styles für das Impressum */
h1 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: white;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.impressumInformationenDiv {
  padding: 1rem;
  background-color: #f8f8f8;
}

.impressumInformationen {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-align: center;
}

.impressumInformationen:first-child {
  font-weight: bold;
}

.impressumInformationen:last-child {
  margin-bottom: 0;
}

.custom-shape-divider-bottom-1680902329 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1680902329 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 162px;
}

.custom-shape-divider-bottom-1680902329 .shape-fill {
  fill: #ABABAB;
}