
*
    {
        box-sizing: border-box;
    }
h1
    {
        margin-top: 50px;
        text-align: center;
    }

h2
    {
        text-align: center;
        margin-bottom: 0px;
        margin-top: 50px;
    }

h3
    {
        margin-bottom: 0px;
        text-align: left;
    }

body
    {
        font-family: Verdana;
        color: #4B403B;
        background-color: #FBF6E4;
        margin: 0;
    }

nav
    {
        height: 70px;
        display: flex; /* Flexbox -> Elemente werden nebeneinander angeordnet */
        justify-content: space-between; /* Inhalt wird soweit wie möglich voneinander entfernt */
        padding: 24px 80px;
        background: #4B403B;
        align-items: center;
    }

.logo
    {
        display: flex;
        align-items: center;
    }

.logo svg
    {
        color: #FBF6E4;
        width: 50px;
        height: auto;
        display: block;
    }

.suchleiste
    {   
        width: 200px;
        height: 10px;
        padding:14px;
        border-radius:999px;
        border:1px solid #FFFFFF1F;
        background: #FFFFFF0F;
        backdrop-filter: blur(6px);
        color: #FBF6E4;  
        text-align: center;      
    }   

button
    {
        border-radius: 14px;
        border: none;
        padding: 0.5em 0.75em; /* 1em ist die Schriftgröße des Elemenets*/
        margin-right: 16px;
    }

.buttondunkel
    {
        color: #FBF6E4;
        background-color: #4B403B;
    }

.navbutton
    {
        background-color: #FBF6E4;
        color: #4B403B;
        display: block; /* wird standardmäßig angezeigt */
        cursor: pointer;
    }   

.right
    {
        display: flex;
        align-items: center;
        gap: 12px;
    }

.right svg
    {
        color: #FBF6E4;
        width: 30px;
        height: auto;
    }    

.right form
    {
        display: flex;
        align-items: center;
        margin: 0; /* form hat sonst einen default margin */
    }

.iconstattbutton
    {
        display: none; /* wird standardmäßig ausgeblendet */
    }

.ohneunterstrich
    {
       text-decoration: none; 
    }

.startseiteimage
    {
        width: 100%;
        height: auto;
    }

.startseiteimage img
    {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
        object-position: center;
    }

.fliesstext
    {
        font-family: monospace;
        margin-left: 150px;
        margin-right: 150px;
        margin-top: 30px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

.fliesstextsuche
    {
        font-family: monospace;
        margin-left: 50px;
        margin-right: 150px;
        margin-top: 50px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

.imagedetail
    {
        width: 100%;
        height: auto;      
    }

.imagedetail img
    {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.zeile
    {
        max-width: 100%;
        overflow: hidden;
        padding-left: 50px;
        padding-right: 50px;
        margin-bottom: 20px;
    }

.kasten
    {
        float: left;
        width: 33.3%;
        overflow: hidden;
        padding: 10px;
        margin-bottom: 10px;
    }

.kastenlink
   {
    text-decoration: none; /* nicht unterstrichen */
    color: inherit; /* bleibt bestehen */
    display: block; /* Link umschließt den gesamten Kasten */
   } 

.inhalt
    {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

.inhalt img
    {
        width: 100%;
        height: auto;
    }

.inhalt .teasertext
    {
        font-family: monospace; 
        text-align: left;
        line-height: 1.5;
        margin-top: 10px;
    }

.imagecontainer
    {
        width: 100%;
        height: 250px;
        float: left;
        overflow: hidden;
        margin-bottom: 10px;
    }

.imagecontainer img
    {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Container komplett füllen*/
        display: block;
    }

.beitragbearbeitenlöschen
    {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin: 20px 80px;
        clear: both;
        /* 
        Container von anderen float-Elementen überlagert 
        -> Buttons werden nicht mehr dahinter versteckt
        */
    }

.blogartikelhinzufügen
    {
        margin-bottom: 30px;
    }

.zeile_blogbeitrag
    {
        padding: 10px 80px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

.wert
    {
        width: 80%;
    }

.eingabefeld
    {
        width: 100%;
        padding: 10px;
    }

.textbox
    {
        min-height: 200px;
    }

.formularbutton
    {
        background-color: #4B403B;
        color: #FBF6E4;
        border: none;
        border-radius: 8px;
        text-align: center;
        font-size: 12px;
        cursor: pointer; /* Button-Feeling */
        width: 95%;
        margin-right: 10px;
        display: inline-flex; 
        justify-content: center; 
        align-items: center; 
    }

.vorschau
    {
        max-height: 200px;
    }

.breiterbutton
    {
        width: 95%;
    }

.eingabe
    {
        display: flex;
        justify-content: space-between;
        padding: 24px 80px;
    }

.fehlermeldung
    {
        font-family: monospace;
        text-align: center;
        color: #800020;
        border: 2px solid #800020; 
        border-radius: 5px;
        padding: 10px;
        max-width: 450px;
        margin-left: auto;
        margin-right: 80px;
        margin-top: 50px;
        margin-bottom: 30px;
        line-height: 1.5;
    }


/* Breakpoints */

@media SCREEN AND (max-width: 950px)
    {
        h1
        {font-size: 30px; margin-top: 35px;}
        h2
        {font-size: 20px; margin-top: 30px; margin-left: 20px; margin-right: 20px;}
        h3
        {font-size: 15px;}
        .fliesstext
        {margin-left: 60px; margin-right: 60px; margin-top: 20px;}
        .kasten
        {width: 50%;}
    }


@media screen and (max-width: 700px)
    {
        h1
        {font-size: 20px; margin-top: 20px; margin-bottom: 15px;}
        h2
        {font-size: 16px; margin-top: 20px; margin-left: 35px; margin-right: 35px;}
        h3
        {font-size: 14px;}
        .logo svg
        {width: 40px;}
        nav 
        {height: 50px; padding: 24px 20px;;}
        .navbutton
        {display: none;}
        .suchleiste
        {display: none;}
        .iconstattbutton
        {display: block; width: 15px; margin-right: 15px;}
        .startseiteimage
        {margin-bottom: 10px;}
        .startseiteimage img 
        {height:250px;}
        .fliesstext
        {font-size: 12px; margin-bottom: 20px; margin-left: 35px; margin-right: 35px}
        .kasten
        {width: 100%;}
        .zeile
        {padding-left: 15px; padding-right: 15px;}
        .blogartikelhinzufügen
        {margin-bottom: 10px;}
        .imagedetail img
        {height: 250px;}
        .zeile_blogbeitrag
        {gap: 20px; padding: 10px 40px; display: block;}
        .fehlermeldung
        {margin-left: 10px; margin-right: 10px; margin-top: 20px; margin-bottom: 20px;}
        .wert
        {width: 100%; margin-top: 10px;}
        .merkmal
        {font-size: 14px;}
    }
