.übertitel {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 1em;
    text-align: center;
    color: #333;
}

.überschrift {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
    text-align: center;
    color: #333;
}

.dropdown {
    position: relative;
    display: inline-block;
    float: right; /* Positioniert das Dropdown rechts */
    margin: 10px;
    border: black;
    border-radius: 25px;
    width: 120px;
    height: 100px;
    text-align: center;
    }
    .dropdown-content {
    display: none;
    position: absolute;
    right: 0; /* Positioniert das Dropdown-Menü rechts */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 2px black solid;
    border-radius: 20px;
    }
    .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    }
    .dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 20px;
    }
    .dropdown:hover .dropdown-content {
    display: block; /* Zeigt das Dropdown-Menü beim Hover an */
    }
    .dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 16px;
    font-size: 18px;
    border: none;
    cursor: pointer;

    }
    
        video {
        max-width: 600px; /* Maximale Breite des Videos */
        margin-right: 20px; /* Abstand zwischen Video und Text */
        margin-left: 80px;
    margin-bottom: 20px;            
}
        
    .text {
        background-color: blue; /* Blauer Hintergrund für den Text */
        color: white; /* Textfarbe */
        border-radius: 5px; /* Abgerundete Ecken */

        margin-bottom: 20px;
        }

        body {
            font-family: Arial, sans-serif;
            }
            
            .hero {
                background-color: rgba(255, 255, 255, 0.9);
                padding: 50px 0;
                text-align: center;
            }
    
            .hero .überschrift {
                font-size: 2.5rem;
                color: #333;
            }
    
            .hero .subtext {
                font-size: 1.2rem;
                color: #555;
                margin-bottom: 30px;
            }
    
            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
            }
    
            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
                font-weight: bold;
                border-radius: 30px;
                text-decoration: none;
                color: white;
                transition: all 0.3s ease;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                border: none;
                text-transform: uppercase;
            }
    
            .cta-button:hover {
                transform: translateY(-3px);
            }
    
            .spenden {
                background-color: #27ae60;
            }
    
            .spenden:hover {
                background-color: #2ecc71;
            }
    
            .sponsoring {
                background-color: #2980b9;
            }
    
            .sponsoring:hover {
                background-color: #3498db;
            }