/* Setzt die Hintergrundfarbe für den gesamten Körper der Webseite */
body {
    background-color: #4b6e96; /* Ersetzen Sie dies mit Ihrer gewünschten Hintergrundfarbe */
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px; /* Standardgröße, z. B. 18px */
    justify-content: center;
    align-items: center;
}

/* Zentrierter Container für den Inhalt */
.container {
    width: 40vw; /* Breite des Containers auf 50% der Fensterbreite setzen */
    min-width: 500px; /* Minimale Breite von 300px */
    background-color: #eafff2; /* Hintergrundfarbe für den Inhaltsbereich */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: Fügt einen Schatten hinzu */

}

@media (hover: none) and (pointer: coarse) {
    .container {
        width: 100%;
        padding: 10px;
        box-shadow: none;
    }
    body {
        
    font-size: 40px; /* Standardgröße, z. B. 18px */
    }
}

/* Weitere Stile für Elemente innerhalb des Containers */
h1, h2, p {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3em;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Erstellt zwei Spalten */
    gap: 20px; /* Abstand zwischen den Videos */
    padding: 20px; /* Abstand um das gesamte Grid */
    margin: auto; /* Zentriert das Grid im übergeordneten Container */
    max-width: 1200px; /* Maximalbreite des Grids */
}

.video iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9; /* Definiert das Seitenverhältnis der Videos */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: fadeIn 1s ease-in-out;
}
.video iframe:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}
.centered-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    height: 15%;
    animation: fadeIn 1s ease-in-out;
  }
.custom-navbar {
    background-color: #4b9670; /* Deine gewünschte Hintergrundfarbe */
    border-bottom: 2px solid #2a3b52; /* Optional: Eine untere Linie */
}
.custom-navbar .nav > li > a {
    color: white; /* Textfarbe der Links */
}

.custom-navbar .nav > li > a:hover {
    color: #4b9670; /* Farbe beim Hover-Effekt */
}

.flag-icon-custom {
        width: 20px;
        height: 15px;
        display: inline-block;
        margin-left: 5px; /* Optional: Abstand zwischen Text und Flagge */
        vertical-align: middle; /* Vertikale Ausrichtung zur Textmitte */
    }

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
    animation: fadeIn 1s ease-in-out;
}
.team-member {
    text-align: center;
    max-width: 150px;
}
.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.team-info h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
}
.team-info p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}
button, img {
    animation: fadeIn 1s ease-in-out;
}