/* open-sans-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bitjannausch';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Bitjannausch-Regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/Bitjannausch-Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bitjannausch';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Bitjannausch-Medium.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/Bitjannausch-Medium.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bitjannausch';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Bitjannausch-SemiBold.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/Bitjannausch-SemiBold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
    --prim-color: rgb(213, 26, 0);
    --sec-color: rgb(213, 26, 0);
    --prim-bg-color: rgb(0, 0, 0);
    --sec-bg-color: rgb(213, 26, 0);


    /* darker color sind dunkle Farben und als Kontrastfarben für helle Hintergründe*/

    /* --prim-color-darker: rgb(255, 255, 255);
    --sec-color-darker: rgb(255, 255, 255);
    --prim-bg-color-darker: rgb(255, 255, 255);
    --sec-bg-color-darker: rgb(255, 255, 255); */


    --prim-color-deep-dark: rgb(25, 0, 66);

    /* Diese Farbe dunkelt den Hintergrund ab */
    --prim-bg-color-transparent: rgba(0, 0, 0, 0.137);
}

body {
    font-family: 'Bitjannausch', sans-serif;
    font-size: 16px;

}

a {
    color: #fff;
}

input_light {
    background-color: #fff;
}

.h-50 {
    height: 50vh;
}

.content-center {
    margin: auto;
    justify-content: center;
    align-items: center;
}

.p-thin p {
    font-weight: 100;
}