@import "fonts.css";
@import "header.css";
@import "lang-switcher.css";
@import "banner.css";
@import "demands.css";
@import "description.css";
@import "history.css";
@import "initiators.css";
@import "supporters.css";
@import "footer.css";
@import "datenschutz.css";
@import "impressum.css";
@import "temporary.css";

:root {
    --base-font-size: 0.0625rem;
}

/* ----------------- Base / Reset ----------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.spacer {
    display: block;
    height: calc(20 * var(--base-font-size));
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.divider {
    border: none; /* Remove default border */
    height: 0.25rem; /* Thickness of the line */
    background-color: #000000; /* Soft gray, similar to Tailwind gray-200 */
    width: 80%; /* Slightly narrower than the full width */
    align-self: center;
    margin: 1rem auto; /* Add spacing and center it */
    border-radius: 0.125rem; /* Smooth edges */
}

@media (max-width: 1400px) {
    .divider {
        width: 90%;
    }
    body.menu-open {
        overflow: hidden;
    }

}