/* Grundlegende Stile */
body {
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dunkler Hintergrund */
    color: #FFFFFF; /* Heller Text */
    font: 400 62.5%/1.4 Arial, sans-serif;
    overflow: hidden; /* Verhindert Scrollen aufgrund der Animationen */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Stellt sicher, dass der Footer unten bleibt */
}

/* Hintergrund mit Formen */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Hinter dem Inhalt */
}

.shape {
    position: absolute;
    top: -200px;
    background-color: #152039;
    opacity: 0.6;
    animation: fall linear infinite;
    mix-blend-mode: screen;
}

/* Verschiedene Formen */
.circle {
    border-radius: 50%;
}

.triangle {
    width: 0;
    height: 0;
    background: none;
    position: absolute;
    top: -200px;
    /* Border-Eigenschaften werden per JavaScript gesetzt */
}

/* Keyframes für die Fall-Animation */
@keyframes fall {
    0% {
        transform: translateY(-200px);
        opacity: 1;
    }
    100% {
        transform: translateY(120vh);
        opacity: 0;
    }
}

/* Inhalt */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 20px;
    flex-grow: 1; /* Flexibles Wachstum, um den Footer nach unten zu schieben */
}

.content img {
    max-width: 280px;
}

h1 {
    margin: 20px 0;
    font-size: 45px;
}

p {
    margin: 20px 0;
    font-size: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 1;
    width: 100%;
}
footer a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}

footer .footer-text {
    font-size: 18px; /* Optional: spezifische Schriftgröße für Footer-Text */
}