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

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
}

header {
    background-color: orange;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(14px, 4vw, 20px); /* Dynamische Schriftgröße */
    font-weight: bold;
    text-align: center;
    padding: 0 10px;
}

main {
    padding: 20px;
}

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

.video-item {
    width: 30%;
    min-width: 250px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	font-size: 0.9em;
}

.video-placeholder {
    width: 100%;
    height: 150px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}




.top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    height: 150px;
    padding: 10px 5%;
    gap: 20px;
}


.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsive-logo {
    max-width: 100%;
    height: auto;
    max-height: 130px; /* Begrenzung, damit es nicht zu groß wird */
}


.text-container {
    flex: 2;
    text-align: left;
    font-size: clamp(14px, 2vw, 18px);
    color: #333;
}

/* 🔹 Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
    .top-section {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 20px;
    }
    
    .logo-container, .text-container {
        flex: none;
        width: 100%;
    }

    .responsive-logo {
        max-height: 100px; /* Kleinere Logo-Größe auf kleinen Bildschirmen */
    }
}
.info {
	
	font-size: 0.8em;
	
}

.kurzinfo {
	
	font-size: 0.9em;
	
}
a {
    color: orange;
    text-decoration: none; 
    transition: color 0.3s ease; 
}


a:hover {
    color: black;
    text-decoration: none; 
}
