/* Grundlegende Stile */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow: hidden; /* Verhindert Scrollbalken */
}

/* Container für den Vollbild-Hintergrund */
.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(-45deg, #2e8b57, #3cb371, #66cdaa);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Animation für den Hintergrund-Farbverlauf */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Inhalt-Box */
.content {
    background: rgba(0, 0, 0, 0.5); /* Etwas dunkler für besseren Kontrast */
    padding: 5vh 5vw;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box; /* Stellt sicher, dass Padding in die Breite eingerechnet wird */
}

.content:hover {
    transform: scale(1.02); /* Leichter Zoom-Effekt beim Hovern */
}

/* Icon-Stil */
.icon {
    font-size: clamp(3rem, 10vw, 4rem); /* Fließende Schriftgröße */
    margin-bottom: 25px;
    color: #66cdaa; /* Passend zum Hintergrund */
    text-shadow: 0 0 15px rgba(102, 205, 170, 0.7);
}

/* Überschrift */
h1 {
    font-size: clamp(2.2rem, 8vw, 3rem); /* Fließende Schriftgröße */
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

/* Absatztext */
p {
    font-size: clamp(1.1rem, 4vw, 1.3rem); /* Fließende Schriftgröße */
    line-height: 1.7;
    margin-bottom: 0;
}
