header {
  grid-column: 2 / span 1;
  border-bottom: 1px solid var(--chorus-dark-gray);
  padding-bottom: 1em;

  text-align: center;
}

nav {
  margin-top: 2rem;
}

nav ul {
  width: 100%;
}

nav ul a {
  line-height: 1.5em;
}

nav a:hover::after,
.active::after {
  display: inline-block;
  content: "";
  height: 0.7rem;
  width: 0.7rem;
  background: url("../../icons/star.svg");
  background-repeat: no-repeat;
  position: absolute;
}

.active a {
  color: var(--chorus-dark-gray);
}

.home {
  padding-left: 4px;
  text-transform: lowercase;
  font-variant: small-caps;
  font-size: 1.75rem;
  line-height: 1rem;
  letter-spacing: 0.3rem;
  grid-column: span 3;
}

.home a:hover::after {
  display: inline-block;
  content: "";
  height: 0.75em;
  width: 0.75em;
  background: url("../../icons/star.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
}

.logo-svg {
  fill: var(--chorus-dark-gray);
  width: 120px;
}

.logo-svg:hover {
  fill: var(--chorus-color-accent-light);
}

.menu-list-item {
  /* display: inline-block; */
  /* margin: 1em; */
  /* margin-left: 0.5em; */
  /* margin-right: 2em; */
  /* text-align: right; */

  text-transform: lowercase;
  font-variant: small-caps;
  letter-spacing: 2px;
}

@media screen and (min-width: 451px) and (max-width: 1140px) {
  header {
    grid-column: 2 / span 2;
  }
}

@media screen and (max-width: 450px) {
  header {
    grid-column: 1 / span 4;
  }
}
