.site-bar {
  background: #00798c;
  margin: 0;

  color: #fff;
  padding: .6rem 1.4rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.20);

  display: flex;
  align-items: center;

  justify-content: space-between;
  max-width: 100%;

  gap: 2rem;
}
.site-bar-logo {
  font: 600 1.05rem/1 'Segoe UI', Roboto, sans-serif;
  letter-spacing: .3px;
  margin-right: auto;
}

.site-bar-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s ease;
}

.site-bar-nav a:hover,
.site-bar-nav a:focus {
  color: #ffd43b;
}

