body {
    background-image: url('images/aller_bogen.bmp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: sans-serif;
    color: white;
    
    margin: 0;
    padding: 0;
    min-height: 100vh; 
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 30px;
    border-radius: 10px;
    
    margin-top: 50px; 
    margin-left: 0; 
    margin-right: 0; 
    
    display: block; 
    text-align: center; /* **Zentriert alle Inline-Inhalte im Content-Block** */
    max-width: 45%; 
}

h1 {
    margin-bottom: 25px;
    margin-top: 0;
    text-align: center; 
}

/* **Anpassungen für die Textzeile direkt unter H1** */
.content p:nth-of-type(1) { /* Wählt das erste p-Element im .content */
    text-align: center; /* Stellt sicher, dass diese Textzeile zentriert ist */
    margin-bottom: 30px; /* Abstand nach unten erhöhen */
}

/* **Anpassungen für den Button: kleiner und zentriert** */
.button {
    display: inline-block; /* Bleibt inline-block, damit text-align: center wirkt */
    margin-left: auto; /* Stellt sicher, dass auto-margins wirken, falls display: block */
    margin-right: auto; /* Stellt sicher, dass auto-margins wirken, falls display: block */
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 8px 15px; /* **Kleineres Padding für kleineren Button** */
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em; /* **Kleinere Schriftgröße für kleineren Button** */
    transition: background-color 0.3s;
    width: fit-content; /* **Passt die Breite dem Inhalt an, zentriert sich dann** */
}

.button:hover {
    background-color: #0056b3;
}

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.8;
    text-align: center;
}

.contact-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}
