/*
=============================================================
SC_WEB Version 5.0
Datei: core/css/base.css
Build: 001.00
Zeichensatz: UTF-8 ohne BOM

Zweck:
Globale Grundformatierung des SC_WEB-CORE.

Regeln:
- Enthält ausschließlich HTML-Grundelemente.
- Keine Komponenten.
- Keine Layoutdefinitionen.
- Keine Modulklassen.
=============================================================
*/
/* =========================================================
   SCHNELLNAVIGATION
   HTML -> BODY -> LINKS -> STANDARDABSTÄNDE -> ABSÄTZE
   Nur globale HTML-Grundregeln; keine Komponenten hier ergänzen.
========================================================= */



/* ==========================================================
   HTML
========================================================== */

html {

    font-family: var(--font-sans);

    background: var(--color-background);

    color: var(--color-text);

}


/* ==========================================================
   BODY
========================================================== */

body {

    min-width: 320px;

    background: var(--color-background);

    font-family: var(--font-sans);

    color: var(--color-text);

    line-height: 1.5;

}


/* ==========================================================
   LINKS
========================================================== */

a {

    color: inherit;

    text-decoration: none;

}


/* ==========================================================
   STANDARDABSTÄNDE
========================================================== */

h1,
h2,
h3,
p,
ul {

    margin-top: 0;

}


/* ==========================================================
   ABSÄTZE
========================================================== */

p {

    line-height: 1.5;

}