/* Grundlegende Stile */
* {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #333;
}

body {
    background-color: #dfdfdf;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 950px;
}

/* Kopfzeilenstil */
header {
    background-image: linear-gradient(to bottom right, #4CAF50, #2c832f);
    color: white;
    text-align: center;
    padding: 30px 10px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content img.logo {
    margin-right: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 2em;
}

/* Navigationsstil */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    background-image: linear-gradient(to bottom right, #3d3d3d, #333);
    margin-top: 0;
    padding: 18px 10px;
    font-size: larger;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hauptbereichsstil */
main {
    padding: 2em 15%;
    flex: 1;
}

section {
    margin-bottom: 2em;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content img.join-dwp {
    margin-right: 20px;
    width: 300px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-content img.join-dwp:hover {
    transform: scale(1.03);
}

.about-content blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    quotes: "“" "”" "‘" "’";
    font-size: 20px;
}

.about-content blockquote::before {
    content: open-quote;
    font-size: 6em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    color: #333;
}

.about-content blockquote::after {
    margin-left: 90%;
    right: 50px;
    content: close-quote;
    font-size: 6em;
    line-height: 0.1em;
    vertical-align: -0.4em;
    color: #333;
}

.about-content p {
    margin: 0;
    font-size: 1em;
}

/* Fußzeilenstil */
footer {
    background-image: linear-gradient(to bottom right, #3d3d3d, #292929);
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: auto;
    padding: 22px 10px;
}

footer p {
    color: #f4f4f4;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.link {
    color: #0051a1;
    text-decoration: solid #0051a1;
}
