@media (min-width: 0px) and (max-width: 767px) {
  header {
    background-image: url(./images/mobile/image-header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
  }

  .nav-links {
    position: absolute;
    background-color: rgb(255, 255, 255);
    top: 10vh;
    height: 50vh;
    inset: 12% 10% 30% 10%;
    flex-direction: column;
    justify-content: center;
    transform: translateX(-120%);
    transition: all 1s ease;
    opacity: 0;
  }

  .nav-links a {
    color: var(--Grayish-blue);
  }

  .nav-links a button {
    background-color: hsl(51, 100%, 49%);
  }

  .burger {
    display: block;
    cursor: pointer;
  }
  .burger div {
    transition: all 0.5s ease;
  }
}

.nav-active {
  transform: translateX(0%);
  opacity: 1;
  /* filter: drop-shadow(0px 30px 40px hsl(206, 4%, 67%)); */
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* @keyframes navFade {
  from {
    opacity: 0;
    transform: translateX(4rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
} */

/* .line1 {
  transform: rotate(45deg);
}

.line3 {
  transform: rotate(-45deg);
} */

@media (min-width: 0px) and (max-width: 1023px) {
}

@media (min-width: 768px) and (max-width: 1023px) {
}

@media (min-width: 768px) {
  .nav-links a:hover {
    color: hsl(210, 6%, 82%);
  }
}

@media (min-width: 1024px) {
}

@media (min-width: 1024px) and (max-width: 1084px) {
}

@media (min-width: 768px) and (max-width: 1200px) {
}

@media (min-width: 1201px) {
}

@media (max-width: 575px) {
  header {
    padding: 0rem 1rem 0rem 1rem;
  }

  h1 {
    letter-spacing: 0.3rem;
    font-size: 3.5rem;
  }
}
