/*                           */
/* === Globale Einstellungen */
/*                           */

:root {
    --color: #831D17;
    /* --color: white; */
    --background-color: #F3F5F6;
    /* --background-color: rgb(20, 35, 70); */
    /* --accent-color: #ddecf3; */
    --text-color: black;
    /* --special-color: black; */
    --nav-text-color: #831D17;
    --navbar-height: 100px;
    --font-family: 'Open Sans', sans-serif;
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    font-size: 16px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    border-left: 0px;
    /* padding-left: 5%;
    padding-right: 5%; */
    max-width: 1000px;
    justify-content: center;
}

/*                             */
/* === generelle Einstellungen */
/*                             */

.active {
    /* background-color: #831D17; */
    background: rgb(250, 250, 250) !important;
}

/*                               */
/* === Einstellung für TAG's === */
/*                               */

h1 {
    color: var(--color);
    word-wrap: break-word;
}

a {
    color: #831D17;
    text-decoration: none;
    margin-left: 0px;
    font-weight: bold;
}

figure {
    border: 1px #cccccc solid;
    padding: 4px;
    margin: auto;
}

figcaption {
    font-size: small;
    padding: 2px;
    text-align: center;
}

li {
    margin-top: 1em;
    margin-bottom: 1em;
}

mark {
    background-color: #F3F5F6;
    color: #831D17
}

ol {
    display: block;
    list-style-type: decimal;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}

p {
    font-size: 1.0em;
    line-height: 2.0em;
}

span {
    color: #831D17;
}

.verstecken {
    color: #831D17;
    text-decoration: none;
    font-weight: bold;
    padding-left: 22px;
}

span:hover {
    text-decoration: underline;
}

/*                                    */
/* === Ende Einstellung für TAG's === */
/*                                    */

.themen {
    padding-left: 22px;
}

.start {
    color: #831D17;
    font-size: large;
}

.breite {
    color: #831D17;
    font-size: 20px;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 10px;
    padding-top: 30px;
}

.image-container {
    display: flex;
    width: 96%;
    height: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 5px;
    padding: 16px;
}

.navbar-menue {
    display: grid;
    justify-content: center;
    margin: 20px;
}


.Zentrum {
    display: flex;
    display: inline;
    align-items: stretch;
    justify-content: stretch;
    color: #831D17;
}

a,
input,
button {
    cursor: default;
}

a:hover,
button:hover,
input:hover {
    color: black;
    /* Schriftfarbe wird rot */
    /* text-decoration: underline; */
    background: var(--accent-color);
    /* Unterstreichung wird angezeigt */
    /* font-family: "Times New Roman", serif; */
    /* font-size: 100%; */
    /* Neue Schriftart */
    cursor: pointer;
}

/*                                       */
/*  === CSS für Bilder auf Webseiten === */
/*                                       */
.innen-l {
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.bild {
    height: 300px;
    max-width: 100%;
    width: auto;
}

.bildklein {
    height: 150px;
    max-width: 100%;
    padding-right: 20px;
    width: auto;
}

.innen-r {
    float: right;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*                                                                  */
/* === cookie in index.php für Dialog 'nur technische cookies' ===  */
/*                                                                  */
cookie-popup {
    border: #341783;
    text-align: center;
    /*
    bottom: 20px;
    top: 0px;
    position: absolute;
    left: 0;
    right: 0;
    */
    z-index: 9999;
    font-size: 14px;
    line-height: 20px;
    padding: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

#cookie-popup.hidden {
    display: none;
}

/* === ende cookie ===*/


@media (max-width: 1100px) {
    body {
        padding-left: 0;
        padding-right: 0;
        max-width: 80%;
    }

    .bild {
        width: 300px;
        max-width: 100%;
        height: auto;
        max-height: 300px;
    }

    .h1 {
        font-size: 1em;
    }

}