@media (max-width: 600px) {
    h1 {
      font-size: 1.15rem; /* Angepasste Schriftgröße für h1 auf mobilen Geräten */
    }
  
    h2 {
      font-size: 0.9rem; /* Angepasste Schriftgröße für h2 auf mobilen Geräten */
    }

    .cta-color-1-wide {
      width: 10rem;
    }

    .checkboxes {
      display: flex;
      flex-direction: column;
    }

    .title {
      margin-bottom: 2rem;
    }

    footer nav {
      height: fit-content;
      margin-bottom: 2rem;
    }

    .nav-links {
      flex-direction: column;
    }

    #profile-pic {
      margin-top: 5rem;
      margin-bottom: 5cqmin;
    }
  }


@media (max-width: 3000px) {
    .logo {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    #desktop-nav {
        display: none;
      }
      #hamburger-nav {
        display: flex;
      }
}

@keyframes transition {
  from {
    opacity: 0;
    transform: rotateX(-10deg)
  }

  to {
    opacity: 1;
    transform: rotateX(0);
  }
}
    