.menu-toggle {
  display: inline-flex;
  margin-left: 10px;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.menu-toggle svg {
  width: 22px;
  height: auto;
}

.menu-section {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 90%;
  max-width: 350px;
  height: 100vh;
  display: none;
  background-color: #D4C4BB;
  transition-duration: 1.5s;
}

.menu-section.on {
  display: block;
}

.off {
  display: none;
}

.hamburger ul {
  margin: 0;
  padding: 0;
  font-family: "alexandria";
  list-style: none;
  margin: 50px 0 0 30px;
  text-align: left;
}

.hamburger ul a {
  text-decoration: none;
  color: #050A30;
  font-size: 1.2em;
  font-weight: 200;
  line-height: 200%;
}

.hamburger ul a:hover {
  color: #050A30;
  text-decoration: underline;
  text-decoration-color: #926A54;
  text-decoration-style: solid 2px;
  text-decoration-thickness: 3px;

}