@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,500;1,400&display=swap');

body {
	background-color: #000;
	color: #E7E6E6;
	font-family: 'Exo', sans-serif; /* Orbitron, Rajdhani, Exo */
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 200%;
	background-image: url('bg.jpg');
	background-size: cover;
	background-repeat: repeat;
	background-position: center;
	z-index: -1;
	transform: translateY(0);
}

hr {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin: 0 auto; /* Center the line */
	width: 65%;
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (orientation: portrait) {
	hr {
		width: 75%;
	}
}

.section {
	position: relative;
	height: 70vh; /* clamp(500px, 50vw, 80vh); */
	min-height: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 1;
}

.sectionWithVideo {
	min-height: 650px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (orientation: portrait) {
	.sectionWithVideo {
		min-height: 500px;
	}
}

p {
	color: #ffffff;
	opacity: 0.6;
	font-size: smaller;
	font-weight: normal;
	line-height: 1.4;
	margin-bottom: 0em;
}

ul {
	color: #ffffff;
	opacity: 0.6;
	font-size: smaller;
	font-weight: normal;
	line-height: 1.4;
	text-align: left;
}

a {
	color: #ffffff;
	font-size: smaller;
	font-weight: normal;
	text-decoration: none;
	margin-bottom: 0em;
	line-height: 1.0;
}

h1 {
	color: #fff;
	margin-bottom: 1em;
	line-height: 1.0;
}

h2 {
	color: #fff;
	opacity: 0.8;
	font-size: medium;
	font-weight: normal;
	margin-bottom: 1em;
	line-height: 1.5;
}

h3 {
	color: #fff;
	opacity: 0.7;
	font-size: smaller;
	font-weight: normal;
	margin-bottom: 1em;
	line-height: 1.0;
}

.image-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.image-row img {
    max-width: 160px;
    height: auto; /* Maintain aspect ratio */
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (orientation: portrait) {
.image-row {
    display: flex; /* Arrange items in a row */
    justify-content: space-around; /* Distribute items evenly */
    align-items: center; /* Vertically center items */
    flex-wrap: wrap; /* Allow items to wrap if needed */
    gap: 10px; /* Space between items */
    max-width: 100%; /* Ensure the container fits within the viewport */
    box-sizing: border-box; /* Include padding in size calculations */
    margin: 0 auto; /* Center the row within the page */
}

.image-row img, .image-row a {
    max-width: 30%; /* Limit each item to 30% of the container width */
    flex-grow: 1; /* Allow items to resize proportionally */
    min-width: 100px; /* Prevent items from becoming too small */
    height: auto; /* Maintain aspect ratio for images */
    text-align: center; /* Center-align link content if needed */
}

.image-row a img {
    border: 0; /* Ensure the link's image doesn't have a border */
    width: 100%; /* Make the linked image fill its container proportionally */
    height: auto; /* Maintain aspect ratio */
}
}

img[src="vielfaltlogo.png"] {
    max-width: 100%;
    height: auto;
    width: 300px;
}

.video-wrapper {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto; /* Center the video horizontally (optional) */
    aspect-ratio: 16 / 9;
    overflow: hidden; /* Ensures no content spills outside */
    /*padding-bottom: 56.25%; /* Aspect ratio 16:9 (9/16 = 0.5625) */
    /*height: 0; /* Maintain aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
