/* Grundlegende Einstellungen */
body {
    background-color: #4c4239; /* Das Blau aus dem Screenshot */
    color: #dcdcdc; /* Helles Grau für den Text */
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 200; /* Light */
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 18px;
}

/* Layout Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Kopfzeile */
header {
    padding: 40px 0;
}

header .container {
    display: flex;
    flex-direction: column; /* Ändert die Richtung: Elemente werden untereinander angeordnet */
    align-items: flex-start; /* Alles linksbündig ausrichten */
    gap: 0px; /* Abstand zwischen Navigation und Titel */
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    width: 100%; /* Damit die Nav die volle Breite einnehmen kann */
}

nav a {
    color: #ff9f82;
    text-decoration: none;
    transition: opacity 0.2s;
}

nav a:hover {
    text-decoration: none;
    color: #dcdcdc;

}

/* Site Title */
.site-title {
    font-size: 2rem;
    font-weight: 200;
    margin: 0;
    margin-left: 50px; /* Dein gewünschter Einzug für den Titel */
}


/* Hauptinhalt */
main {
    padding: 100px 20px 80px 0;
}

article {
    margin-bottom: 120px; /* Etwas mehr Abstand statt Trennlinie */
}

h1 {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 5px;
    margin-top: 0;
    text-decoration: none;
    color:#dcdcdc;
} 

h2 {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 5px;
    margin-top: 0;
}

.date {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

p {
    margin-bottom: 20px;
    padding-left: 50px;
    text-align: left; /* Linksbündig statt Blocksatz */
}

/* Footer */
footer {
    padding: 20px 0;
    font-size: 1rem;
    text-align: center;
}