/* Grundlegende Typografie und Farben */
body {
    font-family: 'Georgia', serif; /* Klassische Schriftart für literarische Anmutung */
    background-color: #1a1a1a; /* Sehr dunkler Hintergrund */
    color: #e0e0e0; /* Heller Text für Kontrast */
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Mindesthöhe des Bodys auf 100% des Viewports */
    box-sizing: border-box; /* Padding wird in die Breite/Höhe einberechnet */
}

.container {
    max-width: 800px;
    width: 100%;
    background-color: #282828; /* Etwas hellerer Dunkelgrau für den Inhaltsbereich */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Tieferer Schatten für Dramatik */
    text-align: center;
}

/* Header-Stile */
header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444; /* Dezente Trennlinie */
}

header h1 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; /* Eine weitere klassische Serif-Schrift */
    font-size: 2.8em;
    color: #f0f0f0; /* Leicht heller als normaler Text */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Leichter Schatten für Titel */
}

header p {
    font-style: italic;
    color: #b0b0b0;
    font-size: 1.1em;
}

/* Links-Bereich */
.dialog-links {
    margin-bottom: 40px;
}

.dialog-links h2 {
    font-family: 'Georgia', serif;
    font-size: 2em;
    color: #d0d0d0;
    margin-bottom: 25px;
}

.dialog-links ul {
    list-style: none; /* Keine Aufzählungszeichen */
    padding: 0;
}

.dialog-links li {
    margin-bottom: 15px;
}

.dialog-links a {
    display: block; /* Link füllt die ganze Breite für Klickfreundlichkeit */
    background-color: #4a4a4a; /* Dunklerer Hintergrund für Links */
    color: #a0c0ff; /* Ein kühler Blau-Ton für Links */
    padding: 15px 20px;
    text-decoration: none; /* Keine Unterstreichung */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.2em;
    border: 1px solid #666; /* Dezenter Rand */
}

.dialog-links a:hover {
    background-color: #5a5a5a; /* Heller bei Hover */
    color: #ffffff; /* Weißer Text bei Hover */
    transform: translateY(-3px); /* Leichter Schwebe-Effekt */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Footer-Stile */
footer {
    border-top: 1px solid #444; /* Dezente Trennlinie */
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 20px;
    }
    header h1 {
        font-size: 2em;
    }
    .dialog-links h2 {
        font-size: 1.6em;
    }
    .dialog-links a {
        font-size: 1.1em;
    }
} 

