body {
    font-family: obvia, sans-serif;
    font-style: normal;
    font-size: 19px;
    font-weight: 400;
    color: #454545;
}
.header-container {
    z-index: 1; /* Niedriger Z-Index für den Header */
}

.main-content {
    position: relative;
    z-index: 2; /* Höherer Z-Index, um über dem Header zu sein */
}


.headline {
    font-style: normal;
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 50px;
}

.text {
    padding-bottom: 50px;
    padding-top: 20px;
}

#new-book .text {
    padding-top: 0px;
    padding-bottom: 0px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

section#header {
    padding-top: 0px;
    padding-bottom: 0px;
}

#palindrom-serie, #anthologie, #new-book {
    background-color: #F2F2F2;
}

.modul-auswahl .row:first-of-type {
    padding-top: 80px;
}

.scroll-down {
    position: relative;
    display: inline-block;
    animation: pulse-animation 2s infinite ease-in-out;
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Annahme, dass der SVG ein Kreis ist */
    animation: shadow-pulse 2s infinite ease-in-out;
    z-index: -1; /* Stellt sicher, dass der Schatten hinter dem SVG erscheint */
    background: transparent;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.socials {
    display: flex;
    align-items: center; /* Zentriert die Icons vertikal */
    justify-content: flex-start; /* Ausrichtung der Icons am Anfang des Containers */

}

@keyframes pulse-animation {
    0%, 100% {
        transform: scale(0.95);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes shadow-pulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1);
        opacity: 0; /* Der Schatten wird vollständig transparent */
    }
}

.row-cols-3 img {
    max-width: 100%; /* Passt die Bildbreite an den Container an */
    height: auto; /* Behält das Seitenverhältnis des Bildes bei */
    object-fit: cover; /* Deckt den festgelegten Bereich ab, kann zu Beschnitt führen */
}

.pl-0 {
    padding-left: 0!important;
}
.pr-0 {
    padding-right: 0!important;
}
.top-30 {
    top: 30px!important;
}
.-end-15 {
    right: -15px;
}

img {
    max-width: 100%;
    height: auto;
}




/*xs*/
@media (max-width: 575px) {
    .footer-desktop {
        display: none;
    }
    .footer-mobil {
        display: block;
    }
    .logo-privacy {
        width: 250px!important;
    }
    .headline {
        font-size: 30px; /* Anpassung der Überschriftengröße */
    }
    .logo {
        width: 250px;
    }
}

/*s*/
@media (min-width: 575px) and (max-width: 769px) {
    body {
        font-size: 16px; /* Kleinere Schriftgröße für bessere Lesbarkeit */
    }

    .headline {
        font-size: 35px; /* Anpassung der Überschriftengröße */
    }

    .header-container, .main-content {
        padding: 0 15px; /* Rand hinzufügen, damit der Inhalt nicht am Bildschirmrand klebt */
    }

    .logo {
        width: 250px;
    }

    .logo-privacy {
        width: 250px!important;
    }

    .scroll-down {
        width: 40px; /* Verkleinere das Scroll-Down-Icon */
    }

    .top-30, .-end-15 {
        top: 15px!important; /* Anpassung der Position für überlappende Bilder */
        right: -5px!important;
    }

    .footer-desktop {
        display: none;
    }
    .footer-mobil {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 990px) {
    .logo {
        width: 350px;
    }
    .footer-desktop {
        display: none;
    }
    .footer-mobil {
        display: block;
    }
    .logo-privacy {
        width: 350px!important;
    }

}

@media (min-width: 991px) and (max-width: 1201px) {
    .logo {
        width: 450px;
    }
    .container {
        max-width: 1364px!important;
    }

    .footer-desktop {
        display: flex;
    }
    .footer-mobil {
        display: none;
    }
    .logo-privacy {
        width: 400px!important;
    }
}


@media (min-width: 1201px) {
    .logo {
        width: 450px;
    }
    .container {
        max-width: 1364px!important;
    }

    .footer-desktop {
        display: flex;
    }
    .footer-mobil {
        display: none;
    }
    .logo-privacy {
        width: 400px!important;
    }
}