.header {
  padding: 2.5vw 4vw;
  display: flex;
  background: var(--color-bg-warm-beige);
}

.header-title-nav {
  display: flex;
  flex-direction: column;
  flex: 0 0 90%;
  align-items: center;
}

.header-title {
  text-align: center;
  font-family: "Rufina", serif;
  font-weight: 700;
  font-size: var(--font-size-h1);
}

/* how do you get all descendants? */
.header-anchor>a {
  text-decoration: initial;
  color: initial
}

.header-anchor>a:visited {
  text-decoration: initial;
  color: initial
}


.header-nav-wrapper {
  margin-top: 1.7vw;
  text-align: center;
}

.header-nav {
  display: inline-flex;
  font-size: var(--font-size-nav);
}

.header-nav-item {
  margin-left: 0.85vw;
  margin-right: 0.85vw;
}

.header-blank {
  flex: 0 0 5%;
}

.header-icons {
  flex: 0 0 5%;
  display: flex;
  flex-direction: row;
  margin: auto 0;
  align-items: center;
  gap: 10px;
}

.header-desktop {
  display: contents;
}

.header-mobile {
  display: none;
}

@media only screen and (pointer: coarse) and (max-width: 1024px),
screen and (max-width: 799px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    width: 100%;
  }

  .header-blank {
    flex: 1 0 10%;
  }

  .header-title {
    text-align: left;
  }

  /* why on earth does the other style not apply here? */
  .header-title>a {
    text-decoration: initial;
    color: initial
  }
}

.menu-right {
  width: 25vw;
  height: 100vh;
  position: absolute;
  top: 0;
  margin-left: auto;
  margin-right: 0;
  padding: 2.5vw;
  border: none;
  background-color: var(--color-bg-white);
}

.menu-close {
  font-size: 25px;
  float: right;
}

.button-reset {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: "Rufina", serif;

}

.menu-items {
  font-size: calc((0.75) * 1.2vw + 1rem);
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 5vw;
}

.menu-mobile-only {
  display: none;
}

@media only screen and (pointer: coarse) and (max-width: 1024px),
screen and (max-width: 799px) {
  .menu-right {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    margin: 0;
    padding: 2.5vw;
    border: none;
    background-color: var(--color-bg-white);
  }

  .menu-mobile-only {
    display: block;
  }
}