/* ====== Grundreset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;          /* kein Scrollen, da nur ein Bild */
  font-family: Arial, Helvetica, sans-serif;
}

/* ====== Hintergrund-Bild ====== */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Bild hier ersetzen (Pfad oder URL) */
  background-image: url("/bilder/2007-10_Monte_Rosa2.jpg");
  background-size: cover;          /* Bild füllt gesamten Bildschirm */
  background-position: center;     /* Bild zentriert */
  background-repeat: no-repeat;
  z-index: 1;
}

/* ====== Hauptinhalt ====== */
.content {
  position: relative;
  z-index: 2;          /* über dem Hintergrund */
  height: 100%;
  width: 100%;
}

/* ====== Copyright-Hinweis unten rechts ====== */
.copyright {
  position: fixed;
  right: 10px;        /* Abstand vom rechten Rand */
  bottom: 10px;       /* Abstand vom unteren Rand */

  font-size: 0.75rem;
  color: rgba(211, 211, 211, 0.411);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);   /* lesbar auf hellem Bild */

  z-index: 3;         /* über allem anderen */
}

/* ====== Verantwortungsvoll / Erweiterung ====== */
/* Wenn später Inhalte hinzukommen, einfach die Regeln hier ergänzen.
   Beispiel für einen Header:
header { ... }
*/

a {
  color: white;
  position: fixed;
  left: 10px;        /* Abstand vom rechten Rand */
  bottom: 10px;       /* Abstand vom unteren Rand */

}