body {
  margin: 0;
  padding: 0;
background: url("safe-cool.png") no-repeat center center fixed;

  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  max-width: 600px;
  width: 90%;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px #000;
  letter-spacing: 1px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px #000;
}

a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

body {
  flex-direction: column;
  gap: 2rem; /* Abstand zwischen den beiden Blöcken */
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  max-width: 600px;
  width: 90%;
}

.content:hover {
  /* Optional: dezente Aufhellung bei Hover, wirkt hochwertig */
  background-color: rgba(0, 0, 0, 0.45);
  transition: background-color 0.3s ease;
}

body {
  margin: 0;
  padding: 0;
  background: url("safe-cool.png") no-repeat center center fixed;
  background-size: cover;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikal zentriert */
  align-items: center;     /* horizontal zentriert */
  gap: 2rem;               /* Abstand zwischen den Boxen */
  text-align: center;
}

