* {
	padding: 0;
	margin: 0;
	border: 0;
}


@font-face {
    font-family: 'Noto Sans Thin';
    src: url('fonts/NotoSans-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: thin;
}

@font-face {
    font-family: 'Noto Sans Light';
    src: url('fonts/NotoSans-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Noto Sans Bold';
    src: url('fonts/NotoSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: bold;
}


html, body {
	position: relative;
	font-family: 'Noto Sans Light', sans-serif;
	font-size: 17px;
	line-height: 1.5em;
	color: #222;
	background: #f8f8f8;
}


p {
	margin-bottom: 1.2em;
}

h2 {
	font-family: 'Noto Sans Bold', sans-serif;
	font-size: 1.4em;
	margin: 0.5em 0;
}

a {
	font-family: 'Noto Sans Light', sans-serif;
	text-decoration: none;
	color: #d12;
	cursor: pointer;
}

#title a,
#title a:hover,
#title a:focus,
#title a:active {
	font-family: 'Noto Sans Thin', sans-serif;
	color: #222;
}

a:hover,
a:focus {
	color: #15a;
	text-decoration: underline;
}

a.active {
	color: #d61;
}


#page {
	position: relative;
	margin: 0 auto;
	min-width: 420px;
	max-width: 800px;
}

#header {
	position: sticky;
	top: 0px;
	z-index: 120;
}

header {
	font-family: 'Noto Sans Thin', sans-serif;
	height: 60px;
	padding: 0.5em 0;
	margin: 0 25px;
	margin-bottom: 0em;
	position: relative;
	overflow: visible;
	background: rgba(248, 248, 248, 1.0);
}

#title {
	font-size: 2.5em;
	line-height: 1.2em;
    font-kerning: auto;
}

#menu {
	float: right;
	margin-top: -28px;
    text-align: center;
}

#menu a {
	padding-left: 1em;
    display: inline-block; /* Damit die Menüpunkte horizontal bleiben */
}

a.selected {
	color: #000000;
	cursor: auto;
}


.left {
	float: left;
}

.right {
	float: right;
}

.content {
	clear: both;
	position: relative;
	z-index: 1;
	margin: 0 25px;
	padding: 1em 0;
}

.workshops,
.filmografie {
	display: none;
}

.text {
	position: relative;
}

span.nowrap {
	white-space: nowrap;
}

img {
	width: 50%;
	padding-bottom: 1em;
	z-index: 1;
}

img.left {
	padding-right: 20px;
}

img.right {
	padding-left: 20px;
}

p.title {
	font-family: 'Noto Sans Bold', sans-serif;
	font-weight: 700;
	font-size: 1.2em;
	margin-bottom: 0.5em;
}

p.title span.year {
	font-family: 'Noto Sans Thin', sans-serif;
}

p.info {
	font-size: 0.9em;
	line-height: 1.3em;
}

.film {
	border-top: 1px solid black;
	padding-top: 1em;
}

hr {
	clear: both;
	height: 25px;
	width:100%;
	margin-top: 25px;
}

#legal {
	margin-bottom: 4em;
	border-bottom: none;
	border-top: 1px solid black;
}



#footer {
	position: sticky;
	bottom: 0px;
	width: 100%;
	z-index: 120;
}

footer {
	padding: 12px 0;
	text-align: center;
	padding: 1em;
	font-size: 1.2em;
	color: #222;
	background: rgba(248, 248, 248, 0.9);
}


@media only screen and (max-width: 420px) {
	
	html, body {
		font-size: 17px;
	}
	
	#page {
		min-width: 300px;
	}
	
	header {
		font-size: 1.2em;
		height: 90px;
	}

	#menu {
		float: right;
		margin-top: 0px;
	}
	
	img {
		width: 100%;
	}
	
	p.title {
		margin-bottom: 0;
	}
	
	p.info {
		margin-bottom: 0;
	}
	
	hr {
		margin-top: 0;
	}

/* Aktualisierte Media Query für das Menü und den Titel */
@media only screen and (max-width: 420px) {
    #title,
    #menu {
        text-align: center; /* Titel und Menü zentrieren */
        float: none; /* Float entfernen, um die Zentrierung zu ermöglichen */
        width: 100%; /* Breite auf 100% setzen, um das Zentrieren zu gewährleisten */
    }

    #menu {
        white-space: nowrap; /* Verhindert Zeilenumbrüche im Menü */
    }

    #menu a {
        padding: 0 1em; /* Padding für Abstand zwischen den Menüpunkten hinzufügen */
        display: inline-block; /* Inline-Block verwenden, um das Menü auf einer Zeile anzuzeigen */
    }
}