/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url( 'resources/bg.svg' );
	background-size: 17%;
    color: #333;
}


#TeamLuiseKamusella { max-width: 100%; width: 30em; height: auto; } 
#imgEmail {width: 18em;     position: relative;
    top: -0.1em; /* nach unten verschieben */
    vertical-align: middle; /* optional: Grundausrichtung zum Text */
    height: auto; /* ggf. Bildgröße anpassen */}
#TeamPortrait {  width: 100%;  height: auto; } 
header, footer {
    background-color: #671216ff;
    color: #fff4f4;
    padding: 20px;
    text-align: center;
}
iframe {width: 100%;}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 960px;
    margin: 30px auto;
    padding: 2em;
    background: #fff4f4;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 3em;
}
img {border-radius: 2em;}
footer {
    font-size: 0.9em;
}
header{    display: flex;              /* Logo und Textbereich nebeneinander */
    align-items: center;        /* vertikale Ausrichtung zentrieren */
    gap: 20px;                  /* Abstand zwischen Logo und Text */
	justify-content: center;
	}
.logoRechts {
    display: none;
	height: 0em;
	border-radius: 0em;
}
.logoLinks {
    height: 8em;               /* Logo-Höhe anpassen */
    width: auto;                /* Seitenverhältnis beibehalten */
    border-radius: 0em;
}
.header-text {
    display: flex;              /* Überschrift und Navigation untereinander */
    flex-direction: column;
    justify-content: center;    /* vertikale Ausrichtung innerhalb der Spalte */
}
@media (max-width: 768px) {
    .logoRechts {
		display: block;
        width: 15%;               /* Logo-Höhe anpassen */
		height: auto;
		transform: scaleX(-1);
	}
	.logoLinks {
		display: block;
        width: 15%;               /* Logo-Höhe anpassen */
		height: auto;
	}
    nav a {
        display: block;
        margin: 10px 0;
    }

    header, footer {
        padding: 15px;
    }

    main {
        margin: 15px;
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }
}