/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body ohne Hintergrundbild */
body {
    height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Separates Hintergrund-Element mit Filter */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/pics/ImZweifel.jpg');
    background-repeat: repeat;
    background-size: 10%;
    opacity: 0.2;
    z-index: -1;
}

/* Container für die Zentrierung */
.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Der schwebende Textblock */
.text-block {
    padding: 30px 40px;
    text-align: center;
    max-width: auto;
    /* Kein Hintergrund mehr */
}

.text-block h1 {
    color: #111;
    margin-bottom: 15px;
    font-size: 2.9em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Starker Schatten für schwebenden Effekt */
}

.text-block p {
    color: #111;
    font-size: 1.9em;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7); /* Schatten für bessere Lesbarkeit */
}
/* Link-Styling - sieht aus wie normaler Text, nur unterstrichen */
.text-block a {
    color: #111; /* Gleiche Farbe wie der Text */
    font-size: inherit; /* Gleiche Schriftgröße */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7); /* Gleicher Schatten */
    text-decoration: underline; /* Unterstrichen */
}

.text-block a:hover {
    color: #111; /* Farbe bleibt auch beim Hover gleich */
    text-decoration: underline; /* Unterstreichung bleibt */
}

.text-block a:visited {
    color: #111; /* Farbe bleibt auch für besuchte Links gleich */
}
