
*{
    font-family: Montserrat;
    font-weight: 500;
    color: grey;
    font-size: 16px;

    text-decoration: none;
}

header{
    display: flex;
    align-items: center;
}

.logo{
    flex: 1;
}

.login{
   flex: 0; 
}

.nav_links{
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.nav_links li a:hover,.aktiver_menulink{
    color: var(--blue);
    border-bottom-style: dotted;
    border-bottom-width: 5px;
    border-bottom-color: var(--blue);
}

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

.grosse_nachricht, .kleine_nachricht, .grosse_nachricht_vertikal{
    box-sizing: border-box;
    height: auto;
    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_low_opacity);
    color: white;
    padding: 3px;
    line-height: 150%;
}

.marker{
    font-size: 28px;
}

.mini_marker{
    background-color: #00004d;
    font-size: 22px;
}

.grosse_nachricht h2, .kleine_nachricht h2, .grosse_nachricht_vertikal h2{
    margin: 5px 0px 10px 0px;
}

@media (min-width:1000px) {
    .alle_nachrichten_uebersicht{
        display:grid;

        grid-template-columns: 33% 33% 33%;

        grid-auto-rows: 30vw;

        grid-column-gap:10px;
        grid: row gap 10px;

        justify-content: center;
    }
    
}

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

.kleine_nachricht{
    height: auto;
}

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

.grosse_nachricht h2, .kleine_nachricht h2, .grosse_nachricht_vertikal h2{
    margin-bottom: 0px;
}

footer{
    width: 100%;
    background-color: var(--blue);
    color: white;
    text-align: center;

    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
}

body{
    width: 1260;
    margin: auto;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main{
    flex: 1;
}