* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background-image: url("../fotos/foto-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header {
    text-align: center;
}

/* 
.logo {
    max-width: 200px;
}
*/

.Hobby-Imkerei-container {
    width: 100%;
    text-align: center; /* Zentriert den Text */
}

.Hobby-Imkerei {
   
    color: white;
    background-color: rgba(155, 155, 155, 0.5);
    margin-top: 120px;
    margin-bottom: 60px;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 35pt;
}


.willkommen-container {

width: 50%;
text-align: center;

}


.willkommen-1 {

    color: white;
    background-color: rgba(37, 43, 117, 0.9);
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    font-size: 70pt;

}


.willkommen-2 {

    color: white;
    background-color: rgba(37, 43, 117, 0.9);
    margin-top: 0px;
    margin-bottom: 60px;
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20pt;

}





.main {
    color: white;
    text-align: center;
}

.main--heading {
    color: rgb(255, 255, 255);
    margin-top: 120px;
    margin-bottom: 60px;
    background-color: transparent 50%;
    padding: 12px 20px 12px 20px;
    display: inline-block;
    border-radius: 10000px;
    font-size: 40pt;
    
}   
   



        /* Section Styles */
        section {
            max-width: 30%;
            margin: 40px auto;
            padding: 20px;
            background-color: rgba(200, 200, 200, 0.35); /* Schwarz mit 50% Transparenz */
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
        }



        h1 {
            color: #ec940f;
            background-color: #373374;
            margin-bottom: 20px;
        }

        .video-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        iframe {
            width: 100%;
            max-width: 560px;
            height: 315px;
        }

        .news-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        input, textarea {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
        }

        button {
            padding: 10px;
            background-color: #373374;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #e9a238;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: #252b75e6;
            color: white;
            position: relative;
            bottom: 0;
            width: 100%;
        }
    
