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

li {
  list-style: none;
}

a{
  color: white;
  text-decoration: none;
}



body{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  height: 100vH;
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: url(moviebackground.jpg);
  backdrop-filter: brightness(10%);
  background-size: cover;
  background-repeat: no-repeat;
}

.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;
}

.nav-link {
  transition: 0.7s ease;
}
.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;
}

#film{
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
}

#film:hover{
  font-size: 1.7rem;
}


h1 {
  margin-top: 2rem;
  font-size: 2rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: white;
  text-align: center;
  

}

/* Boxen */
.box {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
}

.boxText {
  font-size: 18px;
}

#boxHeadline {
  font-size: 25px;
  margin-left: 1.5rem;
  color: white;
}

@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;
  }

  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
  }

  .box {
    margin: 10px 0;
  }

  }