:root {
	--schriftart1: 'Arial';
	--schriftart2: 'Kameron';
	--schriftgroesse1: calc(11px + 0.4vw);
	--schriftgroesse2: calc(14px + 1.5vw);
	--schriftgroesse3: calc(18px + 3.0vw);
	--schriftfarbe1: rgba(0, 255, 0, 1);
}

body {
	margin: 0;
	font-family: var(--schriftart1);
	font-size: var(--schriftgroesse1);
	line-height: 140%;
}

.container {
	display: grid;
	grid-template-columns: 1fr minmax(290px, 1024px) 1fr;
	grid-template-rows: min-content min-content 1fr;
	grid-auto-flow: row;
	grid-template-areas:
		". Logo ."
		". Navigation ."
		". Hauptfenster .";
	width: 100vw;
	min-height: 100vh;
}

/* Grid Area Definitionen */
.logo {
	grid-area: Logo;
	justify-self: center;
	align-self: center;
	margin: 1.5em 0 0.5em;
	font-family: var(--schriftart2);
	font-weight: 600;
	font-size: var(--schriftgroesse3);
	line-height: 100%;
	color: red;
	text-align: center;
}

.navigation {
	grid-area: Navigation;
	justify-self: center;
	align-self: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 1em;
	z-index: 1;
}

.hauptfenster {
	grid-area: Hauptfenster;
	background-color: rgba(100, 100, 100, 1);
	background-image: url('styling-werkstatt_dunkel.jpg');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	color: rgba(255, 255, 255, 1);
	padding: 6em 4em;
	margin: 1em;
	display: flex;
	align-items: center;
	min-height: 50vh;
}

.text {
	width: 50%;
}

.navigation a {
	color: rgba(255, 0, 0, 1);
	border-style: solid;
	border-width: 1px 0 0 0;
	border-color: rgba(255, 0, 0, 1);
	padding: 0.5em 1em;
}

a {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

ul {
	padding: 0;
}

img.textTitel {
	max-width: 100%;
	height: auto;
	margin: 0 0 2em 0;
}

img.bildPortrait {
	float: left;
	width: 33%;
	margin: 1.4em 2em 2em 0;
}

div.navigationKlein {
	margin: 0 0 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
}

div.navigationKlein a {
	display: inline-block;
	background-color: rgba(50, 50, 50, 1);
	padding: 0.1em 0.4em;
	text-shadow: none;
}

/* Responsive Styling */
@media only screen and (max-width: 640px) {
	.hauptfenster {
		padding: 2em;
	}
	.text {
		width: 100%;
	}
}

/* Fonts */
@font-face {
	font-family: 'Kameron';
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Kameron';
	src: local('Kameron Regular'), local('Kameron-Regular'), url('Kameron-Regular.ttf') format('truetype');
	font-weight: 400;
}

@font-face {
	font-family: 'Kameron';
	src: local('Kameron Bold'), local('Kameron-Bold'), url('Kameron-Bold.ttf') format('truetype');
	font-weight: 600;
}