

.content {
  user-select: none;
}

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


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

.image-container {
  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 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;

}




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

    
}

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

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




span {
    color: #0E1935;

}


h1 {
  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 {
  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;
}
