@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  background: linear-gradient(135deg, #e497c5, #b5d8fe, #ffff99);
  background-size: 600% 600%;
  animation: gradientShift 20s ease infinite;
  color: #000000;
  font-family: 'Raleway', sans-serif;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.visitenkarte {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name-block {
  font-family: 'Courier New', monospace;
  font-size: 9em;
  line-height: 0.9;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}

.info-block {
  margin-top: 1em;
  font-size: 1.1em;
}

.buttons-container {
  display: flex;
  gap: 1.2em;
  margin-top: 3em;
  flex-wrap: wrap;
  justify-content: center;
  position: static;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  opacity: 0.85;
  will-change: transform;
  transform: translateZ(0);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: #000000;
}

.icon-button:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .name-block {
    font-size: 5em;
  }

  .info-block {
    font-size: 1em;
  }

  .buttons-container {
    margin-top: 2.5em;
    justify-content: center;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .icon-button svg {
    width: 25px;
    height: 25px;
  }
}

.icon-text span {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #000000;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: lowercase;
}


/* SEO Text unsichtbar aber für Google lesbar */
.seo-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;