html {
  scroll-padding-top: 60px; /* Höhe der Navigation */
}

body {
  padding-top: 60px; /* Höhe der Navbar, damit der Inhalt nicht verdeckt wird */
}

#home {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#home img.logo {
  width: clamp(180px, 20vw, 360px);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

#home .intro-text {
  margin-top: 0.5rem;
}

#home .btn {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) and (orientation: portrait) {
  #home h1 {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
  #home .lead {
    font-size: 1rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  #home .intro-text {
    font-size: 0.9rem;
  }

  #home .btn {
    font-size: 0.9rem;
    padding: 0.35rem 0.65rem;
    margin-top: 1rem;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  #home img.logo {
    width: 120px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  #home h1 {
    font-size: calc(1.325rem + 0.9vw);
  }
  #home .lead {
    display: none;
  }
  #home .intro-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  #home .btn {
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
  }
}

.logo {
  background-color: #fafafa;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tech-list img {
  height: 36px;
  width: 36px;
}

footer {
  background-color: #333333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #cccccc;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

.social-icons a {
  font-size: 24px;
  color: #ffffff;
  margin: 0 10px;
}

/* .social-icons a:hover {
    color: #2185d0ff;
} */

.social-icons img {
  height: 24px;
  margin: 0 10px;
}

.screenshot-wrapper {
  aspect-ratio: 1.9/1;
  overflow: hidden;
}
