header {
  padding: 3rem;
  display: flex;
  align-items: center;
  width: 100%;
  .site-title {
    display: none;
  }
  .site-branding {
    width: 250px;
  }

  nav {
    ul {
      display: flex;
      justify-content: right;
      gap: 3rem;
      li.current-menu-item {
        a {
          font-weight: 500;
        }
      }
      a {
        font-size: 18px;
        color: black;
        font-weight: 300;
      }
      a:hover {
        color: black;
      }
    }
  }
}

.home header,
.single header {
  position: fixed;
  z-index: 11;
  nav {
    ul {
      display: flex;
      justify-content: right;
      gap: 3rem;
      a {
        font-size: 18px;
        color: white;
      }
      a:hover {
        color: white;
      }
    }
  }
}

.single,
.home {
  header {
    img {
      filter: invert(1) brightness(2);
    }
  }
  header.hidden {
    display: none;
/*     background-color: white; */
    img{
      filter: unset;
    }
    nav ul a {
      color: black;
    }
  }
}
