body {
	background-color: #6495ED;
    font-family: Verdana, sans-serif;
    font-size: 0.8em;
    margin: 0;
    padding: 0;
    background-size: cover;
    color: #000;
}
.container {
    display: flex;
	flex-direction: row;
    max-width: 80%;
	margin: 0 auto;
	/* margin-bottom: 40px; */
    justify-content: space-between;
}
.item {
	display: none;
}
.loader {
	/* display: none; */
}
.main-content {
    flex: 2.5;
	padding: 30px;
	min-width: 40vh;
    background-color: #9b6a12;
    margin-top: 159px;
    border-radius: 18px;
	position: relative;
}
.header {
    display: flex; /* Flexbox für die Anordnung des Titels und des Bildes */
    justify-content: space-between; /* Platz zwischen Titel und Bild */
    align-items: flex-end; /* Vertikale Ausrichtung */
    position: fixed; /* Fixiert den Header */
    top: 0; /* Am oberen Rand der Seite */
    width: 96%; /* Deckt die gesamte Breite ab */
    background-color: rgba(110, 110, 110, 0.8); /* Hintergrundfarbe leicht transparent */
    padding: 15px; /* Innenabstand */
    font-family: courier, new courier, sans-serif;
    font-size: 30px;
    color: #ffffff;
    z-index: 1000; /* Legt den Header über den restlichen Inhalt */
}
.header1 {
    margin: 0; /* Kein Abstand für den Titel */
    font-family: Arial, Helvetice, sans-serif;
    font-size: 0.3em; /* Größerer Titel */
    font-weight: regular;
    color: #FFFFFF; /* weißer Titel */
    margin-right: 100px;
}
.anx {
    width: 120px; /* Breite des Bildes */
    height: 120px; /* Höhe des Bildes */
	transition: width 0.9s ease, height 0.9s ease;
    object-fit: cover; /* Bild proportional skalieren */
}
.sidebar {
    flex: 1;
    padding: 20px;
	min-width: 25vh;
    background-color: #d8d8d8;
    font-size: 11px;
    overflow-y: auto; /* Ermöglicht das eigenständige Scrollen */
    height: 90vh;
    position: sticky;
	margin-top: 159px; /* Platz für den fixierten Header */
    margin-left: 5px;
    border-radius: 18px;
	top: 0;
}
h1, h2 {
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #333;
}

/* Globale CSS-Regeln */
a[id]::before {
    content: "";
    display: block;
    height: 150px; /* Höhe des Abstandes, den du möchtest */
	scroll-margin-top: 150px;
    margin-top: -150px; /* Verschiebung nach oben */
    visibility: hidden;
}

a:hover {
    color: #007BFF;
}

.post-content {
    font-size: 8px;
}

.post-date {
    font-size: 0.9em; /* Kleinere Schriftgröße für das Datum */
    color: #ADD8E6; /* Helles Blau für das Datum */
}

.post-title {
    font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em; /* Größere Schriftgröße für den Titel */
    font-weight: bold; /* Fettschrift für den Titel */
    color: #000; /* Schwarzer Titel */
    margin-top: -6px;
}

.archive-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.archive-entry {
    font-size: 1em;
	margin-bottom: 20px; /* Abstand zwischen den Archiv-Einträgen */
}

.archive-header img {
    display: block; /* Macht das Bild zu einem Blockelement */
    margin: 0 auto; /* Zentriert das Bild */
}
.back-to-main {
    position: fixed;
    top: 170px; /* Unter dem Header */
    left: 20px;
    width: 50px;
    height: 50px;
	border-radius: 50%;
    background-image: url('module/back-buttn.png');
    background-size: cover;
	z-index: 1000;
}
