#popup-container {
  position: fixed;
  z-index: 10;
  top: 0px;
  width: 100vw;
  height: 100vh;
}

#menu-container {
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 100px;
  padding-top: 150px;
  padding-bottom: 200px;
}
#menu-container nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

#menu-btn {
  position: fixed;
  z-index: 10;
  top: 15px;
  right: 15px;

  background: none;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}
#menu-btn img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.menu-link {
  color: white;
  font-size: 25px;
  letter-spacing: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-link:hover {
  text-decoration: underline;
}

.menu-obscure {
  width: 80px;
  height: 100vh;
  position: absolute;
  background-color: black;
  top: 0px;
  left: 0px;
}
.submenu-link {
  text-decoration: none;
  font-weight: 800;
}
.submenu-link:hover {
  text-decoration: underline;
  font-weight: 800;
}

.menu-link.toggle-submenu:hover {
  text-decoration: none;
}
.film-submenu input[type="radio"] {
  display: none;
}

.film-submenu {
  transform: translateY(-10px);
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.film-submenu a {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.film-submenu a:hover {
  font-weight: 700;
}

.about-link {
  margin-top: auto;
  font-size: 12px;
}

#back-btn {
  object-fit: contain;
  width: 15px;
  height: 15px;
  position: fixed;
  top: 20px;
  left: 20px;
}

#home-button {
  display: block;
  width: 80px;
  height: 80px;
  /* background-color: blue; */
  /* border: 1px solid white; */
}
