#navSection {
  width: 100vw;
  height: 4em;
  padding: 1em 1.5em 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #2d3a22;

  & a {
    color: #8fb339;
    font-weight: 600;
    text-decoration: none;
  }

  .cg-logo-img {
    max-width: 11em;
  }

  & .nav-toggle-bars {
    max-width: 2.2em;
  }

  & nav {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 20em;
    height: 20em;
    background-color: #2d3a22;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 3.8em;
    left: 50%;
    transform: translateX(-50%);
    padding: 1em;

    & a {
      display: inline-flex;
      align-items: center;
      height: 2em;
    }
  }

  & ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    text-align: center;
    font-size: 1.2em;
  }
}

#navSection nav.active {
  display: flex;
}
