header {
  margin: 0;
  padding: 0;
  padding: .75em 1em;
  background-color: var(--bg-secondary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  box-sizing: border-box;
}

nav {
  height: fit-content;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  line-height: 1;
  font-family: var(--font-header);
  cursor: default;

  font-size: 1.75em;
}

.logout-link {
  text-decoration: none;
  color: var(--accent-yellow);
  font-family: var(--font-subtext);
  font-weight: 500;
  font-size: 20px;
  vertical-align: middle;
}

nav div {
  width: 20%;
}

.left-header {
  text-align: left;
}

.right-header {
  text-align: right;
}

#header-menu-icon {
  font-size: 30px;
  color: var(--text-primary);
}