* {
	font-family: Arial, Helvetica, sans-serif;
}

html, body {
	margin: 0;
	border: 0;
	padding: 0;
	background-color: #000;
}

body {
	background-image: url("Images/background.png");
	height: 100vh;
	background-size: cover;
}

main {
	margin: auto;
	width: 50%;
	padding: 20px;
}

	main > h1 {
		text-align: center;
		font-size: 3.5em;
	}

.fkLogo {
	filter: invert(1);
	margin: 5%;
	max-width: 442px;
	width: 100%;
	max-height: 172px;
	filter: invert(1);
}

.fkMainTextContainer {
	display: flex;
	flex-direction: column;
	justify-content: flex-end; /* Inhalt rechts ausrichten */
	align-items: flex-end; /* Inhalt unten ausrichten */

	gap: 1px;
	gap: 1px 1px; /* row-gap column gap */
	row-gap: 1px;
	column-gap: 1px;
	margin-top: 5%;
	margin-right: 5%;
}

.fkMainTextItem {
	color: white;
	align-self: flex-end; /* ganz unten */
	font-size: xx-large;
	text-transform: uppercase;
	margin-right: 10px;
	overflow-wrap: break-word;
}

.underConstruction {
	color: lightcoral;
	margin-top:3%;
}
/* https://css-tricks.com/snippets/css/a-guide-to-flexbox/#flexbox-background */
