*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
}

.links li{
    list-style: none;
    display: inline-block;
    position: relative;
    color: #0f7034;
}

.links li::after{
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0f7034;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.links li:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

a{
    text-decoration: none;
    color: #3d3d39;
    font-size: 16px;
}

a:hover{
    color: #0f7034;
}

/* HEADER */

header{
    position: relative;
    padding: 0 32px;    
}

.navbar	{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.navbar .logo a{
    font-size: 24px;
    font-weight: bold;
}

.navbar .links{
    display: flex;
    gap: 32px;
}

.navbar .toggle_btn{
    size: 24px;
    color: #0f7034;
    cursor: pointer;
    display: none;
}

.action_btn{
    background-color: #0f7034;
    color: #fff;
    padding: 8px 16px;
    margin: 15px;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn:active {
    scale: 0.95;
}

/* DROPDOWN MENU */

.dropdown_menu{
    display: none;
    position: absolute;
    right: 32px;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(61, 61, 57, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: 260px;
}

.dropdown_menu li{
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}

/* INTRO */

section#Intro{
    height: calc(115vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#Intro h1{
    font-size: 48px;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #3d3d39;
}

#Intro img{
    height: 500px;
    width: 500px;
    margin-bottom: 60px;
}

.animated-text{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
    color: #3d3d39;
    padding-block-end: 200px; 
}

.animated-text span{
    position: relative;
}

.animated-text span::before{
    content: "bessere Zukunft!";
    color: #3d3d39;
    animation: words 20s infinite;
}

.animated-text span::after{
    content: "";
    position: absolute;
    width: calc(100%-8px);
    height: 100%;
    background-color: #fff;
    border-left: 2px solid #3d3d39;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
    to{
        border-left: 2px solid #3d3d3900;
    }
}

@keyframes words {
    0%,20%{
        content: "bessere";
    }
    81%,100%{
        content: "faire";
    }
}

@keyframes typing {
    10%,15%,30%,35%,50%,55%,70%,75%,90%,95%{
        width: 0;
    }
    5%,20%,25%,40%,45%,60%,65%,80%,85%{
        width: calc(100% + 8px);
    }
}

/* KLIMASCHUTZ */

.section-titel{
    font-size: 32px;
    margin: 50px;
    text-align: center;
    justify-content: center;
    color: #3d3d39;
}

.container{
    width: 90%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 25px;
}

.cards{
    position: relative;
    height: 480px;
    background-color: #fff;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.4);
}

.image-section{
    height: 225px;
    background-color: #0f7034;
    filter: saturate(70%);
}

.cards .img-one{
    background-image: url("../images/klima1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cards .img-two{
    background-image: url("../images/klima2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cards .img-three{
    background-image: url("../images/klima3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content{
    padding: 15px 10px;
    text-align: center;
}

.content h2{
    letter-spacing: 1.5px;
    color: #3d3d39;
}

.content p{
    margin: 15px 0px;
    font-size: 15px;
    color: #3d3d39;
}

.content a{
    text-decoration: none;
    font-size: 17px;
    color: #3d3d39;
    letter-spacing: 1.5px;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #3d3d39;
    padding: 8px 15px;
    cursor: pointer;
}

.content a:hover{
    background-color: #0f7034;
    color: #fff;
    border: 2px solid #0f7034;
}

.button{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* FRIEDEN */

.frieden-container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    margin-top: 50px;
}

.frieden{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.frieden-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.frieden-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.frieden-image:hover img{
    transform: scale(1.2);
}

.frieden-content{
    flex: 1;
}

.frieden-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: #3d3d39;
}

.frieden-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #3d3d39;
}

.frieden-content .frieden-weiterlesen{
    display: inline-block;
    padding: 10px 20px;
    color: #3d3d39;
    background: #fff;
    font-size: 19px;
    text-decoration: none;
    border: 2px solid #3d3d39; 
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.frieden-content .frieden-weiterlesen:hover{
    background-color: #0f7034;
    color: #fff;
    border-color: #0f7034;
}



/* AKTUELLE NACHRICHTEN */

.cards .img-1{
    background-image: url("../images/aufbau.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: saturate(10%);
}

.cards .img-2{
    background-image: url("../images/poetry.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: saturate(10%);
}

.cards .img-3{
    background-image: url("../images/nagasaki.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: saturate(10%);
}

.cards .img-4{
    background-image: url("../images/jet.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: saturate(10%);
}

.cards .img-1:hover{
    filter: saturate(100%);
}

.cards .img-2:hover{
    filter: saturate(100%);
}

.cards .img-3:hover{
    filter: saturate(100%);
}

.cards .img-4:hover{
    filter: saturate(100%);
}

/* SPENDEN */

.spenden-container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    border: 2px solid #0f7034;
    margin-bottom: 100px;
}

.spenden-form .inputbox-intervall,
.spenden-form .inputbox-intervall select{
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    padding: 5px 0;
    outline: none;
    resize: none;
    font-size: 18px;
    color: #3d3d39;
}

.spenden-form .inputbox-intervall span{
    font-size: 18px;
}

.spenden-form .inputbox-radio{
    width: 100%;
    margin-bottom: 10px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 18px;
    padding: 5px 0;
    outline: none;
    resize: none;
    color: #3d3d39;
}

.spenden-form .inputbox-radio .span-titel{
    font-size: 18px;
}

.spenden-form .inputbox-anrede,
.spenden-form .inputbox-anrede select{
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    padding: 5px 0;
    outline: none;
    resize: none;
    font-size: 18px;
    color: #3d3d39;
}

.inputbox-anrede span{
    font-size: 18px;
}

.spenden-inputbox,
.spenden-inputbox input{
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    padding: 5px 0;
    outline: none;
    resize: none;
    font-size: 18px;
    color: #3d3d39;
}

.spenden-inputbox span{
    font-size: 18px;
}

.spenden-button a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background-color: #0f7034;
    color: #fff;
    padding: 8px 16px;
    margin: auto;
    border: none;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn2{
    width: 100%;
    background-color: #0f7034;
    color: #fff;
    padding: 8px 16px;
    margin-top: 15px;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn2:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn2:active {
    scale: 0.95;
}

.download-buttons .action_btn3 {
    font-size: 22px; /* Größere Schrift */
    padding: 15px 30px; /* Größerer Button */
    margin-top: 0; /* Entfernt zusätzlichen Abstand, falls vorhanden */
    width: 100%;
    background-color: #0f7034;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.spenden-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.spenden-popup-content {
    font-size: 25px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    height: 15%;
    max-height: 200px;
    width: 50%;
    max-width: 800px;
    text-align: center;
}

.spenden-popup-content a {
    font-size: 25px;
    text-decoration: underline; /* Fügt die Unterstreichung hinzu */
    display: block; /* Optional, falls Sie den Link auf eine neue Zeile setzen möchten */
    margin-top: 10px; /* Optional, fügt etwas Abstand oberhalb des Links hinzu */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

body, html {
    height: 100%;
    margin: 0;
}

.downloadcontainer {
    width: 90%;
    margin: 50px auto;
    display: flex; /* Ändern Sie dies von Grid zu Flex */
    flex-direction: column; /* Stellen Sie die Flex-Richtung auf Spalte (vertikal) */
    align-items: center; /* Zentriert die Inhalte horizontal */
    justify-content: center; /* Zentriert die Inhalte vertikal */
    margin-top: 130px;
    min-height: 48%;
    padding-bottom: 50px;
    box-sizing: border-box;
}



.downloadcontainer h1 {
    font-size: 36px; /* oder eine andere Größe, die Ihnen gefällt */
    margin-bottom: 50px; /* Abstand zum nächsten Element */
}

.downloadcontainer p {
    font-size: 24px; /* oder eine andere Größe, die etwas kleiner als die Überschrift ist */
    margin-bottom: 40px; /* Abstand zu den Buttons */
}



footer {
    height: 50px; /* Beispielwert, an Ihren Footer anpassen */
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Weitere Styling-Optionen für Ihren Footer */
}


/* ÜBER UNS */

.about-us{
    padding: 80px 0px;
}

.about-container{
    max-width: 90%;
    margin: auto;
    padding: 0 20px;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.flex{
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
}

.about-us h5{
    font-size: 22px;
    margin-bottom: 20px;
    color: #3d3d39;
}

.about-us h2{
    font-size: 45px;
    margin-bottom: 20px;
    color: #0f7034;
}

.about-us p{
    font-size: 18px;
    line-height: 1.5;
    color: #3d3d39;
    margin-bottom: 20px;
}

.fakten-titel{
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #3d3d39;
}

.fakten li{
    list-style: none;
    position: relative;
    padding: 20px;
    justify-content: center;
    align-items: center;
    display: inline-block;
}

.fakten span{
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
}

.fakten p{
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-align: center;
}

.about-us img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.social-links{
    margin-bottom: 20px;
}

.social-links a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    transition: all 0.4s ease;
}

.social-links a:hover{
    transform: translateY(-3px);
}

.about-btn{
    text-decoration: none;
    color: #3d3d39;
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #3d3d39;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.4s ease;
}

.about-btn:hover{
    color: #fff;
    background-color: #0f7034;
    border: 2px solid #0f7034;
}

/* HONEYCOMB */

.gallery {
    --s: 150px; /* control the size */
    --g: 10px;  /* control the gap */
    display: grid;
    margin: calc(var(--s) + var(--g));
}
  
.gallery > img {
    grid-area: 1/1;
    width: var(--s);
    aspect-ratio: 0.866;
    object-fit: cover;
    clip-path: polygon(0% 25%,0% 75%,50% 100%,100% 75%,100% 25%,50% 0);
    transform: translate(var(--_x,0),var(--_y,0)) scale(var(--_t,1));
    cursor: pointer;
    filter: grayscale(80%);
    transition: .2s linear;
}
.gallery > img:hover {
    filter: grayscale(0);
    z-index: 1;
    --_t: 1.2;
}
  
.gallery > img:nth-child(1) {--_x: calc(-100% - var(--g))}
.gallery > img:nth-child(7) {--_x: calc( 100% + var(--g))}
.gallery > img:nth-child(3),
.gallery > img:nth-child(5) {--_y: calc(-75% - .87*var(--g))}
.gallery > img:nth-child(4),
.gallery > img:nth-child(6) {--_y: calc( 75% + .87*var(--g))}
.gallery > img:nth-child(3),
.gallery > img:nth-child(4) {--_x: calc(-50% - .5*var(--g))}
.gallery > img:nth-child(5), 
.gallery > img:nth-child(6) {--_x: calc( 50% + .5*var(--g))}

/* KONTAKT */

.kontakt{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.kontakt .kontakt-content{
    max-width: 800px;
    text-align: center;
}

.kontakt .kontakt-content h2{
    font-size: 36px;
    font-weight: 500;
    color: #3d3d39;
}

.kontakt .kontakt-content p{
    font-weight: 300;
    color: #3d3d39;
}

.kontakt-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.kontakt-container .kontaktInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.kontakt-container .kontaktInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.kontakt-container .kontaktInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.kontakt-container .kontaktInfo .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #3d3d39;
    flex-direction: column;
    font-weight: 300;
}

.kontakt-container .kontaktInfo .box .text h3{
    font-weight: 500;
    color: #0f7034;
}

.kontaktForm{
    width: 40%;
    padding: 40px;
    background-color: rgba(61,61,57,0.1);
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kontaktForm h2{
    font-size: 30px;
    color: #3d3d39;
    font-weight: 500;
}

.kontaktForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.kontaktForm .inputBox input,
.kontaktForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #0f7034;
    outline: none;
    resize: none;
}

.kontaktForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #3d3d39;
}

.kontaktForm .inputBox input:focus ~ span,
.kontaktForm .inputBox input:valid ~ span,
.kontaktForm .inputBox textarea:focus ~ span,
.kontaktForm .inputBox textarea:valid ~ span{
    color: #0f7034;
    font-size: 12px;
    transform: translateY(-20px);
}

.kontaktForm .inputBox input[type="submit"]{
    width: 100px;
    background: #3d3d39;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.kontaktForm .inputBox input[type="submit"]:hover{
    background: #0f7034;
}

/* RESPONSIVE */

/* RESPONSIVE TOP-MENU*/
@media(max-width: 992px){
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }

    .navbar .toggle_btn{
        display: block;
    }
}

.dropdown_menu{
    display: block;
}

@media(max-width: 576px){
    .dropdown_menu{
        left: 32px;
        width: unset;
    }
}

/* RESPONSIV FRIEDEN */
@media screen and (max-width: 768px) {
    .frieden-container{
        padding: 0px;
    }

    .frieden{
        padding: 20px;
        flex-direction: column;
    }

    .frieden-image{
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .frieden-content p{
        padding: 0px;
        font-size: 16px;
    }

    .frieden-content .frieden-weiterlesen{
        font-size: 16px;
    }    
}

/* RESPONSIVE ÜBER UNS */

@media screen and (max-width: 768px) {
    .row{
        flex-direction: column;
    }
    .flex{
        max-width: 100%;
    }
    .about-us h5{
        font-size: 20px;
    }
    .about-us h2{
        font-size: 31px;
    }
    .about-us p{
        font-size: 16px;
    }
    .social-links a{
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        margin-right: 5px;
    }
    .about-btn{
        font-size: 16px;
        padding: 8px 16px;
        margin-bottom: 30px;
    }
}

/* RESPONSIVE KONTAKT */

@media screen and (max-width: 768px) {
    .kontakt{
        padding: 50px;
    }
    .kontakt-container{
        flex-direction: column;
    }
    .kontakt-container .kontaktInfo{
        margin-bottom: 40px;
    }
    .kontakt-container .kontaktInfo,
    .kontaktForm{
        width: 100%;
    }
}

/* RESPONSIVE FOOTER */

@media (max-width:768px){
    .footerNav ul{
        flex-direction: column;
    }
    .footerNav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }

}

/* FOOTER */

footer{
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3d3d39;
    height: auto;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    color: #fff;
    font-size: 29px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 48px;
}

.footer-content p{
    color: #fff;
    letter-spacing: 2px;
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

/* Newsletter-Abonnement-Stile */
.newsletter-subscribe .input-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Ermöglicht das Umbrechen der Elemente auf kleineren Bildschirmen */
}

.newsletter-subscribe .name-input,
.newsletter-subscribe .email-input {
    flex-grow: 1; /* Ermöglicht den Inputs, den verfügbaren Platz auszufüllen */
    padding: 0.625rem; /* Verwendung von rem für responsive padding */
    margin: 0.3125rem;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px; /* Runde Ecken nur auf der linken Seite */
}

.newsletter-subscribe .email-input {
    margin-left: -1px; /* Überlappung erzeugen */
    border-radius: 0 5px 5px 0; /* Runde Ecken nur auf der rechten Seite */
}

.newsletter-subscribe .btn {
    padding: 0.625rem 1.25rem; /* Verwendung von rem für responsive padding */
    border: none;
    background-color: #0f7034;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

/* Responsive Design Anpassungen */
@media (max-width: 768px) {
    .newsletter-subscribe .input-group {
        flex-direction: column; /* Stapelt die Elemente vertikal */
    }

    .newsletter-subscribe .name-input,
    .newsletter-subscribe .email-input,
    .newsletter-subscribe .btn {
        width: 100%; /* Setzt die Breite der Elemente auf 100% */
        margin-left: 0; /* Entfernt die linke Überlappung bei kleineren Bildschirmen */
        border-radius: 5px; /* Runde Ecken für alle Seiten */
    }

    .newsletter-subscribe .name-input {
        margin-bottom: -1px; /* Überlappung zwischen den Eingabefeldern */
    }
}


.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 48px 0;
}

.socials li{
    margin: 0 10px;
}

.grow {
    transition: 1s ease;
}

.grow img:hover{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 1s ease;
}

.footerNav{
    margin: 30px 0;
}

.footerNav ul{
    display: flex;
    justify-content: center;
    list-style: none;
}

.footerNav ul li a{
    color: #fff;
    margin: 20px;
    text-decoration: none;
    font-size: 20px;
    opacity: 0.7;
    transition: 0.5s;
}

.footerNav ul li a:hover{
    opacity: 1;
}

.footer-bottom{
    background: #0f7034;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p{
    color:#fff;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .5;
    font-weight: 200;
}

.rechtliches{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    color: #3d3d39;
    letter-spacing: 0.5px;
    border: 2px solid #0f7034;
    margin-top: 50px;
    margin-bottom: 50px;
}

.rechtliches h1{
    font-size: 24px;
    color: #0f7034;
}

.rechtliches h2{
    font-size: 20;
    color: #0f7034;
}

.rechtliches h3{
    font-size: 18px;
    font-weight: bold;
}

.rechtliches p{
    font-size: 16px;
}

.rechtliches a{
    font-size: 16px;
    color: #0f7034;
}


/* ----------LOGO----------*/
spline-viewer {
    max-height: 850px; /* Maximalhöhe für große Bildschirme */
    width: 100%; /* Breite auf 100% setzen */
    display: block; /* Block-Element, damit es richtig skaliert */
}

#Intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.animated-text {
    position: relative;
    z-index: 10;
}

/* Responsive Design: Passt die Größe des Viewers auf kleineren Bildschirmen an */
@media (max-width: 768px) {
    spline-viewer {
        max-height: 300px; /* Kleinere Maximalhöhe für mobile Geräte */
    }
}

  