body, html {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  color: rgb(191, 190, 194);
}

#canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.lebenslauf {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 50px;
  text-align: center;
}


.text-box h1 {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
  margin: 10px 0;
}

.profilbild {
  width: 30%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
}


.text-box {
  position: relative;
  background-color: rgba(62,60,60,0.7);
  padding: 30px 20px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 800px;
  z-index: 1;
  text-align: center;
}

.text-box p {
  max-width: 700px;
  margin: 10px auto;
  color: #fff;
  line-height: 1.6;
}


.back-button {
  cursor: pointer;
  padding: 10px 30px;
  background-color: #ff00888d;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

footer {
  text-align: center;
  margin: 20px 0;
  color: #aaa;
  font-size: 0.9em;
}

.text-box {
  position: relative;
  background-color: rgba(62,60,60,0.7);
  padding: 30px 20px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 800px;
  z-index: 1;
  text-align: center;

  
  border: 2px solid #fff;
  box-shadow: 
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(255,255,255,0.6),
    0 0 40px rgba(255,255,255,0.4);
}



.text-box {
  position: relative;
  background-color: rgba(62,60,60,0.7);
  padding: 30px 20px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 800px;
  z-index: 1;
  text-align: center;

 
  box-shadow: 
    0 0 10px rgba(255,255,255,0.2),
    0 0 20px rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.text-box:hover {
  transform: scale(1.02);
  box-shadow: 
    0 0 40px rgba(255,255,255,0.5),
    0 0 300px rgba(255,255,255,0.3),
    0 0 45px rgba(255,255,255,0.2);
}

.back-button {
  cursor: pointer;
  padding: 10px 30px;
  background-color: #ff00888d;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.back-button:hover {
  box-shadow: 
    0 0 10px #ff0088,
    0 0 20px #ff0088,
    0 0 40px rgba(255,0,136,0.7);
  transform: scale(1.05);
}

body { font-family: Arial, sans-serif; background: #000000; margin: 0; padding: 0; min-height: 100vh; display: block; /* kein zentrier-Flex für Body */ } /* Navbar bleibt oben */ .navbar { width: 100%; background: #111; /* dunkler Balken */ padding: 15px 0; position: sticky; /* fixiert oben */ top: 0; z-index: 1000; text-align: center; } .navbar ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; gap: 30px; } .navbar li { display: inline; } .navbar a { text-decoration: none; color: white; font-size: 18px; font-weight: bold; transition: all 0.3s ease; padding: 8px 15px; border-radius: 5px; } .navbar a:hover { color: #ff00ff; /* Violett */ text-shadow: 0 0 10px #ff00ff, 0 0 20px #00f; }


.bilderreihe {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 30px 0;
  flex-wrap: wrap; /* bricht um bei kleineren Bildschirmen */
}

.bilderreihe figure {
  text-align: center;
  width: 180px; /* Bildbreite – kannst du anpassen */
}

.bilderreihe img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.bilderreihe img:hover {
  transform: scale(1.05);
}

.bilderreihe figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}
