/* Variables */
:root{    /* Riegel/Absetzung */
    --bg: #ffffff;    /* helle Karten/Boxen */
    --text: #000000;
    --header: #eb0826;
    --text-grey: #999999;
}
/* Text */
body {
    color: var(--text);
    background: var(--bg);
    font-family: 'Lora', sans-serif;
    font-size: 1.125rem;
    /* letter-spacing: 0.0625rem;*/
}
p {line-height: 1.625rem;}
ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
}
li.marker-red::marker {color: var(--header);}
.mq-br::after {
    content: "";
    @media (min-width: 600px) {
        content: "\A";
        white-space: pre;
    }
}

/* Links */


/* Header */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {color: var(--header);font-family: 'Lora', sans-serif;}
h1, .h1, h2, .h2 {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    font-weight: 600;
    margin-top: 34px;
}
h3, .h3 {
    font-size: 1.125rem;
    color: var(--text);
    font-weight: 700;
    margin-top: 26px;
    margin-bottom: 26px;
}


/* section */
section, footer {
    width: 100%;
    @media (min-width: 768px) {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}
section {
    .text-red {
        color: var(--header);
        a {
            color: var(--header);
            text-decoration: underline;

            &:hover,
            &:active {
                color: rgb(13, 110, 253);
            }
        }
    }

    .text-black {
        color: var(--text);
    }

    .text-grey {
        color: var(--text-grey);
    }

    .referenz {
        font-family: 'Libre Franklinc', sans-serif;
        font-size: 0.75rem;
        margin-bottom: 26px;
    }

    .aboutus {
        margin: 4rem 0;
        p{
            font-family: "Libre Franklinc", sans-serif;
            font-size: 0.75rem;
            line-height: 1.0625rem;
            margin-bottom: 0;
        }
    }
}

footer{
    margin-top: 26px;
    margin-bottom: 26px;
    p{
        font-family: "Libre Franklinc", sans-serif;
        font-size: 0.5rem;
        line-height: normal;
        color: var(--text-grey);
        a{
            color: var(--text-grey);
            text-decoration: underline;
            &:hover,
            &:active
                {color: rgb(13, 110, 253);}
        }
    }
}
