/* Allgemeines Styling */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home-page {
    background-image: url('bilder/bild1.jpg'); /* Bild für Startseite */ }

#page2 {
    background-image: url('bilder/bild2.jpg'); /* Bild für die zweite Seite */ }

/* Content-Container rechts unten positionieren */ .content {
    position: absolute;
    bottom: 20px;   /* Abstand von unten */
    right: 20px;    /* Abstand von rechts */
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund für Text */
    padding: 10px;
    border-radius: 10px;
    width: 40%;  /* Breite des Containers auf 40% setzen */
    max-width: 200px; /* Maximale Breite des Containers */ }

/* Verkleinerte Schriftgröße für h1 */
h1 {
    font-size: 1em;  /* Schriftgröße verringert */ }

/* Verkleinerte Schriftgröße für allgemeinen Text im Content */ .content p {
    font-size: 1em;  /* Kleinere Schriftgröße für den Text */ }

/* Schaltfläche im Content-Container */
.button {
    padding: 10px 20px; /* Schaltfläche verkleinert */
    background-color: #003366;  /* Dunkelblaue Hintergrundfarbe */
    color: white;
    text-decoration: none;
    font-size: 1

