/*
File: corporate-design.css
Description: Basis-CSS für die gesamte Webseite, insbesondere für Schriftarten und globale Styles.
Usage: Wird in allen HTML-Dateien eingebunden.
To Extend: Ergänze globale Styles oder Variablen für das Corporate Design.
*/

@font-face {
    font-family: 'Crimson Text';
    /* Der Pfad geht jetzt eine Ebene hoch (..) und dann in den fonts-Ordner. */
    src: url('../fonts/Tinos-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Crimson Text', serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    background-color: rgba(29, 80, 160, 0.1);
    -webkit-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}