*{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    color:grey;
    font-size: 16px;
    text-decoration: none;
    margin: 0;
    padding: 0;
}



header{
    display: flex;
    align-items: center;
    top: 0;
    background-color: white;
    position: -webkit-sticky;
    position: sticky;
    z-index: 100;
}

footer{
    background-color: var(--blue);
    color: white;
    padding: 10px;
    margin: 10px;
    text-align: center;
}

.rechtes_banner{
    display: none;
}



/*Ab hier kommen die Klassen: */
.logo{
    flex: 1;
}

.login{
    flex: 0;
}

.nav{
    position: -webkit-sticky;
    position: sticky;
    top: 78px;
    background-color: white;

    z-index:50;
}

.nav_links{
    display: flex;
    justify-content:space-around;
    flex-wrap: wrap;

    list-style: none;
}

.nav_links li a{
    display: block;
    box-sizing: border-box;
    height: 40px;
    padding: 10px 15px 5px 15px;
}

.nav_links li a:hover{
    color: var(--blue);
    border-bottom-style: solid;
    border-bottom-width: 3px;
    border-bottom-color:var(--blue);
}

.nav_links li a:hover, .aktiver_menulink{
    color: rgb(13, 40, 128);
    border-bottom-style: solid;
    border-bottom-width: 3px;
    border-bottom-color:var(--blue);
}



.grosse_nachricht, .kleine_nachricht, .grosse_nachricht_vertikal{
    box-sizing: border-box;
    height:70vw ;
    margin-bottom: 10px;
    position: relative;
}

.nachrichtenbild_titelseite{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zwei_ueberschriften{
    position:absolute;
    bottom: 8px;
    left: 16px;
}

.marker, .mini_marker{
    background-color: var(--blue);
    color: white;
    padding: 3px;
}

.marker{
    font-size: 22px;
}

.grosse_nachricht{
    height: auto;
    grid-column: 1/3;
}

.kleine_nachricht{
    height: auto;
    
}

.grosse_nachricht_vertikal{
    height: auto;
    grid-row: 2/4;
    grid-column: 2;
}

.Infos_Nachrichten{
    font-style: italic;
}

/*Unterwebseiten*/

.container_einzelner_nachricht{
    padding: 10px;
    margin: 10px;
}

.datum_einzelner_nachricht{
    text-align: right;
    font-size: 13px;
}

.titel_einzelner_nachricht{
    color: var(--blue);
    padding: 10px 0px 10px 0px;
    margin: 0px;
    font-size: 30px;
}

.bild_einzelner_nachricht{
    height: 50vw;
    margin-top: 10px;
}
.bild_einzelner_nachricht img{
    object-fit: cover;
    height: 50vw;
    width: 100%;
    height: 100%;

}

.horizontales_banner{
    height: 20vw;
}

.horizontales_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (min-width: 1000px){
    .alle_nachrichten_uebersicht{
        display:grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 49vw;
        grid-column-gap: 10px;
        justify-content: center;
        margin: 0 10px;
    }
    .kleine_nachricht2{
        height: auto;
        grid-column: 1/3; 
    } 
    .nachricht_und_rechter_banner_container{
        display:flex;
        justify-content: center;
    }
    .oberstes_banner_und_nachricht{
        width: 850px;
        
    }
    .rechtes_banner{
        display: block;
        width: 200px;
        height: 500px;
        margin-left: 10px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    .rechtes_banner img{
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .bild_einzelner_nachricht{
        height: 450px;
        margin-top: 10px;
    }


.horizontales_banner{
    height: 200px
    }
}
    


@media (min-width:1260px){
    .alle_nachrichten_uebersicht{
        display:grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-rows: 32vw;
        grid-column-gap: 10px;
        justify-content: center;
        margin: 0 10px;
    }
    .kleine_nachricht2{
        height: auto;
        grid-column: auto;
    }
}

/*variabeln*/

:root{
    --blue:rgb(13, 40, 128) ;
}