#menu-hamburguesa-overlay.menu-hamburguesa-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 26, 23, 0.77);
  /* background: rgb(226, 0, 0); */
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.menu-hamburguesa-content {
  font-family: "RougeScript-Regular", cursive;
  position: absolute;
  right: 3vw;
  top: 2vh;
  height: 94vh;
  width: 94vw;
  background: var(--bg-color);
  opacity: 0.72;
  border-radius: 25px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.menu-hamburguesa-close {
  position: absolute;
  right: 4px;
  top: 0px;
  width: 1.6rem;
  height: 1.6rem;
  font-family: inherit;
  filter: invert(0) opacity(0.8);
  margin: 6%;
}
.menu-hamburguesa-nav {
  display: flex;
  margin-top: 20%;
  font-family: "RougeScript-Regular", cursive;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.menu-hamburguesa-nav a {
  font-size: 1.3rem;
  color: #222;
  text-decoration: none;
  font-family: "RougeScript-Regular", cursive;

  padding: 12px 0;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.menu-hamburguesa-nav a:hover {
  background: #f0f0f0;
  color: #1f4529;
}
@media (max-width: 600px) {
  .menu-hamburguesa-content {
    padding: 24px 8px 16px 8px;
    min-width: 180px;
  }
  .menu-hamburguesa-close {
    position: absolute;
    right: 4px;
    top: 0px;
    width: 1.6rem;
    height: 1.6rem;
    font-family: inherit;
    filter: invert(0) opacity(0.8);
    margin: 6%;
  }
  .menu-hamburguesa-nav a {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
