.menu {
  list-style-type: none;
  flex-grow: 2;
  display: none;
  justify-content: flex-end;
}

.menu li {
  font-family: "Barlow Condensed";
  font-size: 200%;
  font-weight: 300;
  letter-spacing: 0em;
  line-height: 100%;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow:
    0px 2px 2px rgba(20, 20, 20, 1),
    0px 0px 10px rgba(0, 0, 0, 0.5);
  opacity: 1;
  margin-left: 0.8em;
}

.menu li:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.04em;
}

.hamburger {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  font-size: 170%;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: right;
  justify-content: flex-end;
  text-shadow:
    0px 2px 2px rgba(20, 20, 20, 1),
    0px 0px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding-left: 1em;
}

.hamburger svg {
  height: 0.8em;
  width: auto;
  top: 2px;
  right: 0.1em;
  margin-left: 0.3em;
  filter: drop-shadow(0px 2px 2px rgb(20 20 20 / 1));
}

.hamburger_label {
  display: none;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: #0f0f0fe6;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}