body {
    font-family: Arial, sans-serif;
    background-color: #b9a88b;
}

#mittig {
    margin: 0 auto;
    width: 80%;
    border: 0px solid #000;
    padding: 40px;
    background-color: #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-input {
    width: 100px; /* Stellen Sie hier die gewünschte Breite ein */
    max-width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in der Gesamtbreite enthalten sind */
}

header {
    border-bottom: 0px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#pgnav {
    background-color: #b9a88b;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffff;
}

#pgnav ul {
    list-style: none;
    padding: 0;
}

#pgnav ul li {
    display: inline;
    margin-right: 10px;
}

#pgnav ul li a {
    text-decoration: none;
    color: #000;
}

#pgnav ul li a:hover {
    text-decoration: underline;
}

.title-image {
    width: 100%;
    height: auto;
    margin-top: -30px;
    border-bottom: 0px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.fixed-image {
    position: fixed;
    bottom: 10px; 
    right: 10px;
    width: 100px; 
    height: auto;
    z-index: 1000;
}
.clearing {
    clear: both;
}

.blocksatz {
    text-align: justify;
    border: 1px solid #ffffff;
    padding: 20px;
    border-radius: 8px;
    background-color: #b9a88b;
}

#pgbody {
    margin-top: 20px;
}
.author-title {
    margin-left: 20px;
}
footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.8em;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
#mittig {
    background-color: #877a67; /* Helles Blau */
    padding: 20px; /* Platz um den Inhalt herum */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 40px 8px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

/* Optional: Weitere Anpassungen für Text und andere Elemente im Container */
#mittig p {
    color: #000; /* Dunkles Grün für Text */
}

#mittig h1, #mittig h2 {
    color: #247924; /* Etwas helleres Grün für Überschriften */
}

#mittig a {
    color: #5273d3; /* Blau für Links */
    text-decoration: none; /* Keine Unterstreichung */
}

#mittig a:hover {
    color: #01579b; /* Dunkleres Blau beim Hover */
}

/* Weitere optionale Stiländerungen für Buttons */
button, .button {
    background-color: #000; /* Leuchtendes Orange */
    color: #ffffff; /* Weiß */
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover, .button:hover {
    background-color: #000; /* Gelb */
    color: #247924; /* Dunkles Grün */
}