/* Allgemeine Stile für den Körper und Hintergrund */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    background: #d3b895; 
    background: linear-gradient(180deg, #d3b895 0%, #9d7e56 100%);
}

.background-image {
    flex: 1;
    width: 100%;
    background: #d3b895; 
    background: linear-gradient(180deg, #d3b895 0%, #9d7e56 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    color: #000000;
    padding-bottom: 20px; /* Abstand nach unten für den Inhalt */
}

.container {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding-top: 50px; /* Standard Padding nach oben, wird bei Bedarf angepasst */
}

footer {
    width: 100%;
    color: #000000;
    padding: 20px 0;
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.picture {
    width: 150px; /* Beispiel für die Bildbreite */
    margin-top: 0%; /* Beispiel für den oberen Abstand des Bildes */
}

.Copyright {
    padding-top: 10px;
}

/* Flexbox-Stile für die Fußzeile */
.p-container {
    display: flex;
    justify-content: center; /* Zentriert die Schaltflächen horizontal */
}

.p-container p {
    margin: 0 10px; /* Abstand zwischen den Schaltflächen anpassen */
}

/* Stile für die Schaltflächen */
a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 20px;
    margin: 10px; /* Abstand um die Schaltflächen herum */
    border: 2px solid #000000;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
    .container {
        padding-top: 80px; /* Größeres Padding nach oben für kleinere Bildschirme */
    }
}
