header {
  padding: var(--space-s) 0;
  border-bottom: var(--color-text) 1px dashed;

  & * {
    text-decoration: none;
  }
  
  .home-link {
    font-weight: var(--font-weight-bold);
    
    &:hover{
      text-decoration: underline;
    }

    img {
      width: 25px;
      height: 25px;
    }
  }

  .nav-item {
    margin: 0;

    a:hover {
      border-bottom: 2px solid var(--color-primary);
    }

    svg {
      font-size: 1rem;
    }
  }
}