.lib-navbar-flexbox {
  width: 100vw;
  display: flex;
  height: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: var(--navbar-background-color);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.lib-navbar {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0.3rem auto;
  padding: 0 0.2rem;
  flex-direction: row;
}
.lib-navbar a {
  text-decoration: none;
  color: var(--a-color);
  font-size: var(--navbar-a-font-size);
}
.lib-navbar a:hover {
  text-decoration: underline;
  color: var(--a-hover-color);
  cursor: pointer;
}
.lib-navbar-right {
  display: flex;
  gap: 0.75rem;
}
.lib-navbar-left a {
  font-size: var(--navbar-a-important-font-size);
  font-weight: var(--navbar-a-important-font-wight);
}
#hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--a-color);
  font-size: calc(var(--navbar-a-important-font-size) * 1.2);
}
/* todo make the items go to the left. */
@media (max-width: 768px) {
  .lib-navbar-right {
    display: none;
  }
  .lib-navbar.open {
    flex-direction: column;
    gap: 1rem;
  }
  .lib-navbar-right.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .lib-navbar.open a {
    font-size: var(--navbar-a-important-font-size);
  }
  .lib-button {
    font-size: calc(var(--navbar-a-important-font-size) * 1.2);
  }
  #hamburger {
    display: block;
  }
  #hamburger.open {
    font-size: 2rem;
  }
}
