html, body {
  height: 100%; /* Stellt sicher, dass html und body die gesamte Bildschirmhöhe einnehmen */
  margin: 0;
  padding: 0;
}

body {
  color: white;
  font-family: 'JetBrains Mono', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden; /* Verhindert das Scrollen aufgrund des festen Hintergrunds */
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #ff8113, #732a66); /* Farbverlauf von links unten nach rechts oben */
  filter: brightness(80%); /* Reduziert die Helligkeit des Hintergrunds */
  z-index: -1; /* Hintergrund hinter allen Inhalten */
}

main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: transparent; /* Keine Hintergrundfarbe */
  padding: 25px;
  border-radius: 10px;
  padding-bottom: 50px; /* Erhöht den unteren Abstand innerhalb des main Elements */
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Zentriert die Icons innerhalb des Containers */
  gap: 25px; /* Abstand zwischen den Icons */
  padding: 20px; /* Padding innerhalb des Navigationscontainers */
  max-width: 470px; /* Minimale Breite für drei Icons inklusive Padding und Gaps */
  margin: 0 auto; /* Zentriert die Navigation im übergeordneten Element */
}

div.icon-wrapper {
  width: 60px;
  height: 60px;
  padding: 25px;
  border-radius: 100px;
  margin: 5px;
  transition: transform 0.2s, background-color 0.3s;
  background: linear-gradient(to top left, #ec6a00, #8b2c72); /* Complementary gradient for buttons */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Stärkerer Backdrop-Shadow */
}

div.icon-wrapper:hover {
  transform: scale(1.1);
  background: linear-gradient(to bottom right, #0099e6, #8b2c72); /* Reverse gradient on hover */
}

img.icon {
  width: 60px; /* Default size for standard icons */
  height: 60px;
}

img.custom-icon {
  width: 80px; /* Larger size for custom icons */
  height: 80px;
}

img.logo {
  width: 250px;
  height: 250px;
  margin-bottom: 50px; /* Increases space below the logo */
  border-radius: 100%; /* Makes the logo circular */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Stärkerer Backdrop-Shadow */
  clip-path: circle(100% at 50% 50%); /* Keeps the visible area within the circle */
}

/* Responsive Layout */
@media (max-width: 600px) {
  main {
    padding: 20px;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px; /* Erhöht den Abstand oberhalb der Navigation, falls benötigt */
  }

  div.icon-wrapper {
    width: 50px;
    height: 50px;
    padding: 15px;
  }
}
