body {
    max-height: 100%;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild wird auf die gesamte Fläche skaliert */
    z-index: -1; /* Schiebt das Bild in den Hintergrund */
}


.content-wrapper {
    position: relative;
    z-index: 1; /* Inhalt bleibt über dem Hintergrundbild */
    background: rgba(255, 255, 255, 0.8); /* Transparente weiße Box */
    border-radius: 20px;
    padding: 20px;
}

.headline {
    background-color: black;  /* Schwarzer Hintergrund */
    color: #FFFF00;  
    text-align: center;  
    padding: 10px 20px; 
    font-weight: bold;  
    text-transform: uppercase;
    font-family: Helvetica;
    max-width: fit-content;
    font-size: 40px;  /* Standard-Schriftgröße */
}

/* Media Query für Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .headline {
        font-size: 32px !important;  /* Kleinere Schriftgröße für Tablets */
        padding: 8px 16px;  /* Weniger Padding für kleinere Bildschirme */
    }
}

/* Media Query für mobile Geräte (max-width: 480px) */
@media (max-width: 480px) {
    .headline {
        font-size: 22px !important;  /* Noch kleinere Schriftgröße für Smartphones */
        padding: 6px 12px;  /* Noch weniger Padding auf kleinen Bildschirmen */
    }
}

h2 {
    font-size: 20px;
    font-family: Helvetica;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: black;
    transition: transform 0.3s ease, font-size 0.3s ease; /* Smooth Transition für Vergrößern und Schriftgröße */
}

a:hover {
    transform: scale(1.1); /* Vergrößert das Element leicht */
    font-size: 1.1em; /* Vergrößert die Schriftgröße um 10% */
}

  .footer {
    background-color: black; 
    padding: 8px 0; 
    position: relative; 
}

.footer::before {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px; 
    background-color: #FFFF00; 
}

.footer-content {
    text-align: center; 
    color: #FFFF00; 
    font-size: 14px; 
}

.footer-content p{
    margin-top: 0;
    margin-bottom: 0rem;
}