body {
  background-color: black;
}

.content {
  background-color: black;
  user-select: none;
}

.mail-to span {
  color: white;
  user-select: text; /* Kopieren trotzdem möglich */
}

.content {
  color: white;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.image-container {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-container img {
  max-width: 100%;
  height: 70vh;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.text-container {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;

  h1 {
    color: white;
  }
}

.mail-to {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.mail-to span {
  color: white;
  transition: all 0.3s ease; /* Für sanften Übergang */
  font-weight: bold;
}

.mail-to:hover span {
  color: #ff3130;
  font-weight: bold;
  transform: scale(1.1);
  text-shadow: 0 0 2px rgba(0, 128, 0, 0.5);
}

span {
  color: white;
}

h1 {
  font-family: sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-transform: uppercase;
  color: #0e1935;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dot-container {
  display: inline-flex;
  gap: 2px; /* etwas Luft zwischen den Punkten */
}

.dot {
  color: white;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: bold;
  opacity: 0;
  animation: appear 2s infinite;
  line-height: 1;
  vertical-align: baseline; /* 🔑 sorgt für gleiche Unterkante */
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.4s;
}
.dot:nth-child(3) {
  animation-delay: 0.8s;
}
.dot:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2; /* wenn über Bild, sonst -1 */
  pointer-events: none;
}
