/* Farben */

:root {
    --primary: #b07507;
    --secondary: #658a4c;
    --text: #5a5446;
}

/* Standard Schriftart */

* {
    font-family: "EB Garamond", serif;
}

/* Standard-Einstellungen */


h2,

h4,
h5,
h1,

th {
    color: var(--primary);
    overflow-wrap: break-word;
}


li,
h3,
p {
    color: var(--secondary);
}

p > a {
    text-decoration: underline;
}

em {
    font-weight: bold;
    font-style: normal;
}

p, li {
    font-size: x-large;
    line-height: 150%;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.navbar-nav,
.list-dotless {
    list-style-type: none;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.button-navbar {
    background-color: #ffffff;
    border: none;
}

/* Container */

body {
    margin: 0;
}

.container {
    padding: 1rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */

.navbar-nav .nav-item {
    margin: 10px;
}

.navbar-brand,
.nav-link,
.footer {
    font-family: "Nunito", sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 75px;
    width: 75px;
}

.navbar-brand {
    font-size: 1.5rem;
}


/* Footer */
footer {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer p strong {
    font-size: large;
    color: var(--primary);
}

footer a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px;
    font-size: large;
    color: var(--secondary);
}

footer p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

/* Sektionen */

.hero,
.section-colored {
    background-color: #e1d6bc5d;
}

/* Hero */
.hero-img {
    object-fit: cover;
    object-position: center;
}

.hero-relative {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.hero-relative h1 {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #ffffffd7;
    top: 10%;
    font-size: min(9cqw, 75px);

}