body {
  font-family: Arial, sans-serif;
  background: #000000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}


.kontakt-wrapper {
  padding: 6px;             
  border-radius: 10px;
  background: transparent;
  margin: 40px auto;
  width: 70%;
  max-width: 500px;
  

  box-shadow: 
    0 0 10px rgba(255,255,255,0.6),
    0 0 20px rgba(255,255,255,0.4),
    0 0 30px rgba(255,255,255,0.2);
}



.kontakt-container {
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  width: 87.8%;            
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}


.kontakt-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}


.kontakt-container h3 {
  margin-top: 25px;
  color: #444;
}


.kontakt-container a {
  color: #ff0088;
  text-decoration: none;
}
.kontakt-container a:hover {
  text-decoration: underline;
}

.zurückbutton {
  display: block;
  width: fit-content;
  padding: 12px 25px;
  margin: 30px auto 0;
  background-color: #000000cd;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}



.zurückbutton:hover {
  background-color: #000000;
  box-shadow: 0 0 10px white,
              0 0 20px white,
              0 0 30px rgba(255,255,255,0.7);
  text-decoration: none;   /* Unterstreichung entfernen */
}
/* sorgt dafür, dass nur "normale Links" unterstrichen werden */
.kontakt-container a:not(.zurückbutton):hover {
  text-decoration: underline;
}

/* Zurück-Button immer ohne Unterstreichung */
.zurückbutton,
.zurückbutton:hover {
  text-decoration: none !important; 
}
