* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background-image: url("../images/blob-scene.svg");
    background-size: cover;
    color: black;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.navbar {
    background-color: #4a4a4a;
	opacity: 0.9;
    position: fixed;
    width: 100%;
    max-height: 6rem;
    top: 0;
    border-bottom: 1px solid black;
}

.navbar-container {
    padding: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.nav-logo img {
    max-height: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #eaeaea;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #eaeaea;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

#main-content-wrapper {
    background-color: transparent;
    min-height: 80vh;
    width: 95%;
    max-width: 1100px;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

section {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 10px;
}

section p {
    color: #eaeaea;
    padding: 10px 0;
    font-size: 1.5rem;
}

section h1, h2, h3 {
    color: #eaeaea;
    margin-top: 15px;
    font-size: 2rem;
}

section h3 {
    color: #eaeaea;
    margin-top: 15px;
    font-size: 1.5rem;
}

.top-article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #727272;
    border-radius: 10px;
    margin-bottom: 3rem;
    gap: 0.5rem;
}

.top-article a {
    text-decoration: none;
}

.top-article img {
    max-height: 200px;
    max-width: 95%;
    border-radius: 10px;
}

.top-article-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50em;
    max-height: 50em;
    white-space: initial;
}

.top-article-item p {
    color: white;
    margin-top: 1rem;
    margin-left: 0.5rem;
}

.themen-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
	margin-top: 2rem;
}

.themen-box a {
    text-decoration: none;
}

.themen-box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    max-width: 50em;
    max-height: 50em;
}

.themen-box-item img {
    max-height: 200px;
	max-width: 95%;
    border-radius: 10px;
}

.themen-box-item h2 {
    text-decoration: none;
    color: #eaeaea;
	margin-top: 0.2rem;
}

.themablock-header {
    display: flex;
    color: #eaeaea;
    margin-top: 0.8rem;
    max-width: 100rem;
}

.thema-title {
    display: flex;
    flex-direction: column;
}

.thema-title p, .thema-title h1 {
    margin-top: 0;
}

.thema-title h1 {
    font-size: 2.5rem;
}

.thema-text {
    font-size: 20px;
}

.thema-text img {
	max-height: 400px;
    max-width: 95%;
}

.download-btn {
    background-color: #5ced34;
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 4px;
}

.download-btn:hover {
    background-color: #46b827;
}

#footer-nav {
    background: #4a4a4a;
	opacity: 0.6;
    padding: 10px;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid black;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#footer-nav .footer-container ul {
    display: flex;
}

#footer-nav .footer-container ul li {
    list-style: none;
    padding-right: 15px;
}

#footer-nav .footer-container ul li a, h5 {
    text-decoration: none;
    color: #eaeaea;
}

@media only screen and (max-width: 600px) {
    p {
        font-size: 1em;
    }

    h2 {
        font-size: 1.2em;
    }
  }