/**
 * Setzt die Variablen von Bootstrap auf für uns passende Werte.
 *
 * Das hier sind Angaben, die geladen werden, BEVOR Bootstrap selbst geladen wird. Grob ist das all das, was
 * auf :root gesetzt wird.
 */

:root {
    /* Farben */
    --bs-primary: #0069b3;
    --bs-primary-rgb: 0, 105, 179;   /* Pflicht für rgba()-Nutzung in Bootstrap */
    --bs-secondary: #5a6a7e;

    /* Schrift */
    --bs-font-sans-serif: 'Inter', system-ui, sans-serif;
    --bs-body-font-size: 13px;
    --bs-body-line-height: 1.6;

    /* Abstände */
    --bs-border-radius: 0.25rem;
    --bs-border-radius-lg: 0.5rem;

}