body {
  background-image: url('/images/germany-1281059_1920.png'); /* Pfad zu deinem Bild */
  #background-size: cover;       /* Bild deckt die ganze Seite ab */
background-size: 70% auto;       /* 80% Breite, Höhe automatisch */
  background-repeat: no-repeat;
  background-attachment: fixed; /* bleibt beim Scrollen stehen */
  background-position: center center;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 180, 0.2); /* leichtes Gelb, transparente Stärke */
  pointer-events: none;  /* Overlay blockiert keine Klicks/Text */
  z-index: -1;           /* Overlay bleibt hinter allen Inhalten */
  backdrop-filter: blur(3px); /* leichter Weichzeichner */
}
