body {
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #3b82f6);
  font-family: 'Poppins', sans-serif;
  color: #e0e7ff; /* helles Blau für dunklen Hintergrund */
  background-size: 1500% 1500%;
  animation: gradientShift 15s ease infinite;
}

.container {
  color: #e0e7ff;
}

#profile-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 1x solid #8c3bf6; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
  margin-bottom: 20px;
}

.info-box {
  background: rgba(30, 58, 138, 0.7); /* dunkles Blau mit 70% Deckkraft */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

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