:root {
--bg-color: #121212;      /* Sehr dunkles Grau (fast schwarz) */
--text-color: #e0e0e0;    /* Hellgrauer Text für besseren Kontrast */
--accent-color: #bb86fc;  /* Ein sanftes Lila als Akzent */
--container-bg: #1e1e1e;  /* Etwas helleres Grau für Boxen */
}

body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

.container {
background-color: var(--container-bg);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
text-align: center;
max-width: 400px;
}

h1 {color: var(--accent-color);}

p {text-align: justify;hyphens: auto;
/* Optionale Feinjustierung der Silbentrennung */
hyphenate-limit-chars: auto 5;
hyphenate-limit-lines: 2;
}
