/* Matrix-Hintergrund */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  color: #0f0;
  background: black;
}

/* Textbox */
.datenschutz-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border: 1px solid #0f0;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,255,0,0.5);
  color: #0f0;
  overflow-y: auto;
  max-height: 90%;
}

h1, h2 {
  color: #0f0;
  margin-top: 20px;
}
a {
  color: #0f0;
  text-decoration: underline;
}
