/* Allgemeine Styles für den dunklen Modus */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1, h2 {
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #ff6f61;
}

section {
    margin-bottom: 30px;
}

p {
    margin-bottom: 10px;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Styling für den Header der Seite */
h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Styling für den Text und die Abschnitte */
section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
