/* * {
    box-sizing: border-box;
    border: dotted 1px blanchedalmond;
} */

body {
    background-image: url('../img/background.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}
.main_header {
    font-weight: 900;
    font-size: 50px;
    margin: 1rem;
}
.second_header {
    font-weight: 600;
    font-size: 35px;
    margin: 1rem;
}
.third_header {
    font-weight: 450;
    font-size: 20px;
    margin: 0.5rem;
}
section {
    background-color: rgba(51, 61, 77, 0.6);
    display: block;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    margin: 20px;
    text-align: center;
}


/* Navbar */
.navbar {
    display: flex;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
}
.navbar-title {
    font-size: 1.5rem;
    margin: .5rem;
}
.navbar-links {
    height: 100%;
}
.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.navbar-links li {
    list-style: none;
}
.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}
.navbar-links li:hover {
    background-color: #555;
}
.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .toggle-button {
        display: flex;
    }
    .navbar-links {
        display: none;
        width: 100%;
    }
    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }
    .navbar-links ul li {
        text-align: center;
    }
    .navbar-links ul li a {
        padding: .5rem 1rem;
    }
    .navbar-links.active {
        display: flex;
    }
}


/* Main header */
.intro {
    font-size: 2rem;
    background-color: transparent;
}

/*  Aktuelles */
.news_container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 20% 1fr;
    grid-template-areas: 
            "logo news_header" 
            "logo news_info";
    align-items: center;
    justify-content: center;
}
.news_logo {
    grid-area: logo;
    max-width: 120px;
    max-height: 160px;
    object-fit: scale-down;
}
.news_header {
    grid-area: news_header;
}
.news_info {
    grid-area: news_info;
}

/* FOOTER */
footer {
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background: black;
    color: gray;
    font-size: 12px;
    text-align: left;
}