/**
 * Main navigation
 */

@media screen {

  /* Navigation list items */
  #main-nav li {
    margin: 0;
  }

  /* Make sure that last nav item is not outside viewport on scroll */
  #main-nav li:last-child::after {
    content: "";
    display: block;
    height: 14vh;
  }

  /**
   * Navigation links
   */
  #main-nav a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-size: 1.2em;
    padding: 0.5em 0.5rem;
    filter: drop-shadow(1px 1px 0px var(--body-text));
  }

  #main-nav a:hover,
  #main-nav a:focus,
  #main-nav a:active {
    text-decoration: underline;
  }

  #main-nav .icon {
    margin-right: 0.25em;
  }

  /* Log out */
  #main-nav .logout {
    border-top: 1px solid var(--dark-grey);
    margin-top: 3rem;
  }
}
