header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  background: #7033e8ff;
  margin: auto;
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;

  img {
    height: 120px;
    margin: auto;
  }

  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #7033e8ff;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 100;
    letter-spacing: -1px;

    &.open {
      display: flex;
    }

    a {
      font-size: clamp(2rem, 8vw, 3rem);
      font-weight: 700;
      text-decoration: none;
      color: #F7F7F7;

      &:hover {
        color: #F6E865;
      }
    }
  }

  nav a.active {
    color: #F6E865;
  }

  .burger {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    font-size: 1.5rem;

    i {
      color: #F7F7F7;
    }
  }

  .insta-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
    color: #F7F7F7;
    font-size: 1rem;
    display: none;
  }

  nav.open .insta-link {
    display: block;
  }

  @media (min-width: 800px) {

    nav {
      display: flex;
      flex-direction: row;
      position: static;
      height: auto;
      width: auto;
      gap: 2.5rem;
      letter-spacing: -1px;

      a {
        font-size: clamp(14px, 8vw, 1rem);
      }
    }

    .burger {
      display: none;
    }
  }
}
