/* Grundeinstellungen für die gesamte Seite */
body {
    font-family: 'Special Elite', monospace;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f4e6; /* Altpapier-Hintergrund */
    color: #333;
    background-image: url('../assets/background.jpg');
    background-attachment: fixed;
    background-size: cover;
}

/* Header-Stil */
header {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
    background-color: white;
    padding: 10px;
}

/* Navigation */
nav {
    margin: 10px auto;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    display: inline-block;
    font-size: 0.9em;
    margin-bottom: 10px;
}

nav a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 5px;
    padding: 5px 10px;
}

nav a:hover {
    text-decoration: underline;
}

/* Überschriften */
h1, h2 {
    color: #000;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* Artikel */
article {
    margin-bottom: 30px;
    padding: 15px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Datum in Artikeln */
.date {
    font-style: italic;
    color: #666;
    font-size: 0.8em;
}

/* Links im Fließtext */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    border-top: 1px solid #ddd;
    font-size: 0.8em;
    background-color: white;
}

footer img {
    margin-top: 5px;
    opacity: 0.7;
}