  body {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #222;
    font-size: 20px;
  }

  html {
    scroll-behavior: smooth;
  }

  * {
    box-sizing: border-box;
  }

  a {
    color: #222;
  }

  p {
    margin: 0 0 24px;
  }

  h1 {
    font-size: 26px;
    display: inline;
    margin: 0;
  }

  h1 span {
    display: block;
    color: #666;
    font-weight: 400;
    font-size: 20px;
    margin-top: -8px;
  }

  @media screen and (min-width: 868px) {
    h1 span {
      display: inline;
      margin-left: 16px;
    }
  }

  header {
    padding: 16px 24px;
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }

  .hide-nav-overlay nav ul {
    align-items: center;
    margin: 0;
    padding: 0;
    display: none;
    gap: 12px;
    list-style: none;
  }

  .hide-nav-overlay nav li {
    margin: 0;
    padding: 0;
  }

  .hide-nav-overlay nav a {
    display: block;
    text-decoration: none;
    color: #222;
    font-weight: 400;
  }


  .burger-bar {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 6px;
  }

  .burger {
    border: none;
    background: white;
    border-radius: 50%;
    position: relative;
    /* right: 12px;
            top: 12px; */
    width: 50px;
    height: 50px;
  }

  .burger::after {
    position: absolute;
    content: '';
    width: 80%;
    height: 42%;
    left: 10%;
    top: 9px;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
    transition: transform 0.3s ease;
  }

  .burger::before {
    position: absolute;
    content: '';
    width: 80%;
    left: 10%;
    top: 40%;
    border-top: 2px solid #222;
    transition: transform 0.3s ease;
  }

  .show-nav-overlay .burger::after {
    transform: translatex(-9px) translatey(-4px) rotate(135deg);
    border-bottom: none;
  }

  .show-nav-overlay .burger::before {
    transform: translatex(0px) translatey(3px) rotate(-135deg);
  }

  .show-nav-overlay {
    nav {
      opacity: 1;
      padding: 16px 24px;
      background: white;
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
    }

    nav ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
    }

    nav ul li {
      font-size: 44px;
      opacity: 0;
      animation: stagger ease-in 0.4s forwards 1;
    }

    nav ul li a {
      text-decoration: none;
    }

    nav ul li:nth-child(1) {
      animation-delay: .1s
    }

    nav ul li:nth-child(2) {
      animation-delay: 0.2s
    }

    nav ul li:nth-child(3) {
      animation-delay: 0.3s
    }

    nav ul li:nth-child(4) {
      animation-delay: 0.4s
    }

    nav ul li:nth-child(5) {
      animation-delay: 0.5s
    }

    nav ul li:nth-child(6) {
      animation-delay: 0.6s
    }

    nav ul li:nth-child(7) {
      animation-delay: 0.7s
    }
  }

  @keyframes stagger {
    from {
      opacity: 0;
      transform: translatey(20px);
    }

    to {
      opacity: 1;
      transform: translatey(0px);
    }
  }

  @media screen and (min-width: 868px) {
    .hide-nav-overlay nav ul {
      display: flex;
    }

    .burger-bar {
      display: none;
    }
  }
