
/* CSS-Code für die Optimierung der Darstellung auf Smartphones und größeren Bildschirmen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.courier { font-family: 'Courier New', Courier, monospace; }
.content-box {
    width: 90%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 2.5rem; /* Verkleinerte Schriftgröße für Überschrift */
    color: #2c5e1a;
    word-wrap: break-word; /* Ermöglicht das Umbruch der Wörter */
    margin-bottom: 20px;
}
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
a {
    color: #2c5e1a;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
.custom-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #56ab2f; /* Dunkelgrüne Hintergrundfarbe */
    color: white; /* Weiße Schrift */
    text-decoration: none; /* Keine Unterstreichung */
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #3d7f21; /* Etwas dunklerer Grünton beim Hover */
}
.custom-button {
    /* Deine bisherigen Styles */
    position: relative; /* oder 'absolute', 'fixed', 'sticky', je nach Bedarf */
    z-index: 10; /* Setze den gewünschten z-index Wert */
}


@media (max-width: 600px) {
    h1 { font-size: 1.2rem; } /* Noch kleinere Schriftgröße für Überschrift auf kleinen Bildschirmen */
    .content-box { padding: 10px; }
}
#lottie-animation {
    position: fixed; /* oder 'absolute', je nach Bedarf */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9; /* Stellt sicher, dass der Inhalt über der Animation erscheint */
}


}
