.burger-menu {
  position: fixed;
  right: 1em;
  top: 2.5em;
  z-index: 999;
}

.menu-button {
  position: fixed;
  right: 1em;
  top: 2em;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  border: 0px;
}

.menu-button:hover, .menu-button.active {
  background-color: #fff0;
}

.menu-button.active {}

.menu-button .menu-bar {
  width: 50px;
  height: 2px;
  background-color: #ac9c90;
  position: relative;
  margin: 4px 0;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#menu {
  width: 100%;
  height: 0%;
  position: fixed;
  background-color: #f0f3f5cf;
  top: -10%;
  left: 100%;
  -webkit-transform: translate(-100%, 0%);
  transform: translate(-100%, 10%);
  z-index: -1;
}

.menu-nav {
  list-style: none;
  /* margin: 0; */
  text-align: right;
  position: absolute;
  top: 15%;
  right: 4%;
  /* -webkit-transform: translate(-50%, -40%); */
  /* transform: translate(-50%, -40%); */
  /* width: 100%; */
  width: fit-content;
  font-size: 2em;
  line-height: 0.3em;
  /* overflow: hidden; */
  padding-inline-start: 0px;
}

.menu-nav p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.menu-nav a {
  text-decoration: none;
  color:  #afa095;
  padding: 0.5em;
  display: block;
  opacity: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0.1em;
}

.menu-nav a:hover {
  color: #7b3a38;
  text-decoration: none;
  transition: all 0.5s ease;
}

@media screen and (max-width: 780px) {
  .menu-nav a {
    font-size: 1em;
    line-height: 1em;
  }
  .menu-nav {
    top: 10%;
  }
}

@media screen and (max-width: 480px) {
  .menu-nav a {
    font-size: 0.6em;
  }
  .menu-button {
    top: 1em;
  }
}