* {
    font-family: 'Montserrat', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: auto;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('/assets/img/panorama.webp') repeat-x;
    background-size: cover;
    animation: moveBackground 120s linear infinite alternate;
    z-index: -2; /* Hintergrund hinter den Inhalt legen */
}

@keyframes moveBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.content {
    position: relative;
    z-index: 1;
    padding-top: 1em;
    padding-bottom: 1em;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Schwarze, leicht transparente Ebene */
    z-index: -1; /* Overlay hinter den Inhalt legen, aber vor den Hintergrund */
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 600;
}

.divider-line {
    width: 100%;
    display: block;
}

.divider-line::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background-color: var(--bs-primary);
}

.divider-line.centered::before {
    margin-left: auto;
    margin-right: auto;
}

.card-header .facebook-link {
    position: absolute;
    flex-wrap: wrap;
    display: flex;
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
    align-content: center;
    justify-content: center;
    text-decoration: none;
}

.card-footer {
    background: transparent;
    border-top: 0;
}

.card-footer,
.card-footer a {
    color: var(--bs-secondary);
    text-decoration: none;
}
.card-footer a:hover,
.card-footer a:focus {
    color: var(--bs-primary);
}