/* Allgemeine Stileinstellungen */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.main-area{position: inherit!important; height: 100vh;background: #0C0D0F;color: #fff;}

/* Banner-Stile */
#banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#banner-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 620px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Stil für den Bestätigungsbutton */
#confirm-button {
    background-color: #4285f4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 12px;
}

#banner-content h2{
    font-size: 18px;
}

#banner-content p {
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    color: #555;
}

#banner-content {
    position: relative; /* Wichtig für die Positionierung des X */
    padding: 20px;
}

#close-banner {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

#close-banner:hover {
    color: red;
}


#confirm-button:hover {
    background-color: #357ae8;
}


/* Banner-Stile */
#banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#banner-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 620px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#banner-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

#banner-content p {
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}

/* Schließen-Button */
.close-button {
    display: inline-block;
    background-color: #f4c542; /* Gelbe Farbe */
    color: #333; /* Dunkler Text */
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-button:hover {
    background-color: #e5b737; /* Etwas dunkleres Gelb */
}

/* Media Query für Bildschirme kleiner als 1024px Breite und 768px Höhe */
@media screen and (max-width: 1024px) and (max-height: 768px) {
    .left-section {
        margin-top: 400px; /* Margin-Top hinzufügen */
    }
}

.left-section {
    /* position: absolute; */
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background-size: cover;
    background-position: center top; /* Bild von oben und Mitte ausrichten */
    background-image: url(images/countdown-4-2-1000x1000.jpg);
}

/* Media Query für mobile Geräte */
@media screen and (max-width: 1024px) and (max-height: 768px) {
    .left-section {
        background-position: center center; /* Bild im Zentrum des Containers ausrichten */
    }
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* Damit der Schnee keine Interaktion mit anderen Elementen hat */
    z-index: 9999;
    overflow: hidden;
}

/* Schneeflocken */
.snowflake {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: snow-fall linear infinite;
}

/* Schnee-Fall-Animation */
@keyframes snow-fall {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0.5;
    }
}

/* Container für die Impressum- und Datenschutz-Links */
.footer-links {
    position: fixed;
    bottom: 10px; /* Abstand vom unteren Rand */
    right: 50px; /* Abstand vom rechten Rand */
    font-size: 14px;
    z-index: 999;
    display: flex;
    gap: 20px; /* Abstand zwischen den Links */
    max-width: 90%; /* Maximale Breite anpassen */
    overflow: hidden; /* Verhindert Überlauf */
}

/* Stile für die Links */
.footer-links a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    color: #4285f4;
}

/* Responsive Anpassung für kleinere Bildschirme */
@media screen and (max-width: 768px) {
    .footer-links {
        right: 15px; /* Kleinere Abstände für mobile Geräte */
        bottom: 10px;
        gap: 10px; /* Kleinere Abstände zwischen den Links */
    }

    /* Wenn der Bildschirm zu schmal wird, stellen wir sicher, dass die Links nicht überlaufen */
    .footer-links a {
        font-size: 12px; /* Kleinere Schriftgröße für kleinere Bildschirme */
    }
}

@media screen and (max-width: 480px) {
    /* Bei sehr schmalen Bildschirmen */
    .footer-links {
        right: 15px; 
        bottom: 5px; /* Kleinere Abstände für sehr kleine Bildschirme */
        gap: 5px; 
    }

    .footer-links a {
        font-size: 10px; /* Noch kleinere Schriftgröße für kleinere Bildschirme */
    }
}


/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
    .snowflake {
        width: 6px;
        height: 6px;
    }
}

@media only screen and (max-width: 992px) {
    .main-area {
        position: relative;
        height: 200vh!important;
    }



}