/* styles.css */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
}

body {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* leichtes Overlay für Lesbarkeit */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.65);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

h1 {
  color: #cc0000;
}

a.button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background-color: #cc0000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}