body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;

  /* Hintergrundbild */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), /* Abdunkelung */
    url('images/home_02-1500x500.jpg') no-repeat center center;
  background-size: cover;
}


.karte {
  background:
linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), /* Aufhellung */
  url('images/home_04-450x450.jpg');
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
  width: 320px;
  animation: fadeIn 1s ease-in-out;
  transition: transform 0.3s ease;
}

.karte:hover {
  transform: translateY(-5px);
}

.profilbild {
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.karte:hover .profilbild {
  transform: scale(1.05);
}

h1 {
  color: #333;
  margin-bottom: 5px;
}

.beschreibung {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.links a {
  text-decoration: none;
  background: royalblue;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s;
}

.links a:hover {
  background: navy;
}

button {
  background-color: royalblue;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: navy;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 400px) {
  .karte {
    width: 90%;
    padding: 15px;
  }
}
.versteckt {
  display: none;
}

#emailText {
  margin-top: 10px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  word-break: break-all;
  background-color: #f4f4f4;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
