.top-bar {
  display: flex;
  z-index: 5;
  position: sticky;
  top: 0;
  flex-direction: "row";
  align-items: center;
  place-items: center;
  height: 50px;
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  background-color: var(--primary-color);
}

@media (max-width: 62em) {
  .top-bar {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.top-bar-inner {
  display: flex;
  flex: auto;
  align-items: center;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
}

.menu-item {
  margin-left: 1.5em;
}

.menu-item a {
  color: var(--off-white);
}

.menu-item a:hover,
.menu-item a:active {
  color: white;
}

@media (max-width: 62em) {
  .menu-item {
    font-size: 0.9rem;
  }
}

.logo-item {
  display: inline-flex;
  height: 100%;
  margin-left: 0.5rem;
  cursor: pointer;
}

@media (max-width: 48em) {
  .logo-item {
    margin-left: 0;
  }
}

.logo-item--link {
  align-self: center;
  height: 40px;
}
