/* Hintergrundbild und allgemeines Layout */
.background-image {
    background: #d3b895; 
    background: linear-gradient(180deg, #d3b895 0%, #9d7e56 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    width: 100vw;
    height: 100vh;
    position: relative;
    color: #000000;
    font-family: 'Times New Roman', Times, serif;
}

/* Container für den Inhalt */
.container {
    text-align: center;
    padding-top: 13px;
    width: 80%;
    margin: 0 auto;
}

/* Stile für die Liste der Ereignisse */
ul {
    list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
    padding: 0; /* Entfernt die Standard-Einrückung */
    text-align: center;
    margin: 0; /* Entfernt den Standard-Abstand */
}

li {
    margin: 10px 0; /* Fügt etwas Abstand zwischen den Listenelementen hinzu */
}

a {
    color: #000000; /* Linkfarbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
    font-weight: bold; /* Fettgedruckte Links */
    display: inline-block; /* Ermöglicht Padding */
    padding: 10px 20px; /* Fügt Padding hinzu */
    border: 2px solid #000000; /* Fügt einen Rahmen hinzu */
    border-radius: 5px; /* Rundet die Ecken */
    transition: background-color 0.3s, color 0.3s; /* Übergangseffekte */
}

a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Stile für den Show Article Button */
#showArticleButton {
    margin-top: 20px; /* Verkleinert den Abstand zum Schieberegler */
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    background-color: transparent;
    cursor: pointer;
}

#showArticleButton:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Bildstil */
img {
    width: 150px; 
    margin-top: 0%;
}

/* Stile für die Positionierung und das Layout des Körpers */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Fußzeile */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #000000;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    background-color: #000000;
    color: #ffffff;
}

.p-container {
    display: flex;
    justify-content: space-between;
}

.p-container p {
    flex: 1;
    text-align: center;
}

.Copyright{
    padding-top: 10px;
}