:root {
    --border-color-form: #000;
    --main-background-color: #79553c;
    --main-text-color: #c8c5c5;
    --field-background: #fff;
    --relevant-field-background: #e1ecf3;
    --font-color-input:#007;
    --font-color-input-annotation:#000;
    --font-size-input: 24px;
    --font-size-input-mobile: 16px;
    --font-size-input-annotation: 14px;
    --font-input: "Vibur", sans-serif;
    --font-input-annotation: "Noto Sans", sans-serif;
    --font-main: Verdana, sans-serif;
    --menu-background-color:#79553c;
    --border-color: #ddd;
    --border-size: 2px;
    --link-color:#c8c5c5;
    --font: Verdana, sans-serif;
    --navigation-font-size:16px;
    --font-size-content: 16px;
    --font-size-headlines:32px;
    --font-size-subheadlines:16px;
    --size-letterbox:40px;
    --size-letterbox-mobile:20px;
}
img {
    user-select: none;
}
body{
    font-size:120%;
    background:var(--main-background-color);
    color:var(--main-text-color);
    font-family: var(--font-main);
}

a{
    font-family: var(--font);
    text-decoration:none;
    color:#c8c5c5;
    cursor:pointer;
}

.main_title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px;

}

.main_title a {
    display: flex;
    align-items: center;
}
.main_title img{
    margin-left:20px;height: 80px;border:0
}
.main_title span{
    font-weight: bold;font-size: 48px;
    user-select:none;


}
.navbar {
    background-color: var(--menu-background-color);
    padding: 10px 0;
    border-top: var(--border-size) solid var(--border-color);
    border-bottom: var(--border-size) solid var(--border-color);
    text-align: center;
    user-select: none;
}
.navbar .nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.navbar a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
    font-size: var(--navigation-font-size);
    cursor: pointer;
    font-family: var(--font);
    text-transform: uppercase;
}

.navbar a:hover {
    text-decoration: underline;
}
.navbar a.active {
    text-decoration: underline;
}
.separator {
    color: var(--border-color);
    font-weight: normal;
    font-family: var(--font);
    font-size: var(--navigation-font-size);
}

.content_text {
    max-width: 890px;       /* Maximale Breite auf 400px begrenzt */
    margin: 0 auto;         /* Zentriert den Bereich horizontal */
    padding: 0 20px;        /* Optionales Padding für etwas Abstand zum Rand */
    text-align: left;       /* Text links ausrichten */
    box-sizing: border-box; /* Stellt sicher, dass Padding zur Breite gehört */
    margin-top:20px;
    font-family: var(--font);
    font-size: var(--font-size-content);
    line-height: 19px;
    color: var(--main-text-color);
}

.content_text .headline{
    font-weight: bold;
    font-size: var(--font-size-headlines);
    line-height: var(--font-size-headlines);
}
.content_text .subheadline{
    font-weight: bold;
    font-size: var(--font-size-subheadlines);
    line-height: var(--font-size-subheadlines);
}
.content_text .text{
    margin-top: 30px;
    line-height: 20px;
}
.floatImageRight, .floatImageLeft{
    border-width:0;
    height:300px;
    box-shadow: 8px 8px 10px #111;
    border-radius: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    transition: 1s filter ease-in-out;
}
.floatImageRight:hover, .floatImageLeft:hover{
    filter: brightness(120%);
}
.floatImageRight{
    float:right;
    margin-left: 20px;
    margin-right: 0;
}
.floatImageLeft {
    float:left;
    margin-right: 20px;
    margin-left: 0;
}

span.play{
    cursor:pointer;
}

@media (max-width: 768px) {
    .main_title span{
        font-weight: bold;font-size: 36px;
    }

    .navbar .nav-items {
        flex-direction: column; /* Links werden vertikal angeordnet */
        gap: 10px; /* Weniger Abstand zwischen den Links */
    }

    .navbar a {
        font-size: 16px; /* Kleinere Schriftgröße für mobile Geräte */
    }

    .separator {
        display: none; /* Trennzeichen ausblenden */
    }




}
@media (max-width: 500px) {

    --factor: 60%;
    .main_title span{
        font-weight: bold;font-size: 32px;
    }
    .main_title {
        margin-bottom: 30px;
        margin-top: 20px;
    }
    .floatImageRight, .floatImageLeft {
        height: auto;
        width: 100%
    }



}