:root {
	--body-back-color-sand: rgba(219, 163, 52, 0.5);
	--body-back-color-steel: rgba(52, 149, 219, 0.42);
	--body-back-color-nature: rgba(222, 227, 100, 0.47);
	--body-back-color-urban: rgba(197, 198, 188, 0.53);
	--body-back-color: rgba(197, 198, 188, 0.53);
	--body-back-color-dark: rgba(197, 198, 188, 0.8);
	--media-height: 20;
}

* {
	box-sizing: border-box; /* Padding und Border werden zur Breite/Höhe des Elements hinzugefügt */
}
@media (max-width: 575.98px) {
	.carousel-caption {
		display: none;
	}
	/* Hide the carousel text when the screen is less than 600 pixels wide */
	.navbar {
		flex-direction: column;
		text-align: center;
	}
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	border: 0px solid blue;
	min-height: 90vh; /* Körper mindestens so groß wie das Ansichtsfenster */
	background-color: var(--body-back-color);
}

p {
	margin-bottom: 0.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-top: 1.0rem !important;
	margin-bottom: .5rem;
	font-weight: 600;
	line-height: 1.2;
}

/* Inhalt */
.container {
	border: 0px;
	padding:0px;
	border: 1px solid var(--body-back-color-dark);
}

/* Footer */
.footer {
	padding: 6px;
	bottom: 0px;
	background-color: var(--body-back-color-dark);
}

.footer a {
	color: #000;
	text-decoration: none;
	margin: 0 15px;
	font-size: 20px;
	transition: color 0.3s;
}

.footer a:hover {
	color: #12f37b;
}

.main {
	background-color: rgba(219, 163, 52, 0.0);
	flex: 1; /* Hauptinhalt wächst bei Bedarf */
	padding: 0px;
	margin:0px;
	border: 0px solid var(--body-back-color-dark);
	height: calc(100vh - 95px);
	overflow-y: auto;
	overflow-x:hidden;
}

.carousel-item {
	transition: transform 5s ease-in-out;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
	transition: opacity 2s 0s;
}

.carousel-inner img {
	width: 100%; /* Set width to 100% */
	margin: auto;
	min-height:200px;
}

.btnFace {
	background-color: var(--body-back-color-dark);
}

.bordered_div {
	border-radius: 6px;
	border: 0px solid var(--body-back-color-dark);;
	--box-shadow: 0 0 10px var(--body-back-color);;
}
h3 {
	font-weight: bold;
	margin: 4px 4px 4px 4px;
}

.download-button {
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	color: rgba(99, 76, 31, 0.82);
	background-color: var(--body-back-color);
	border: 1px solid rgba(99, 76, 31, 0.82);
	text-decoration: none;
	border-radius: 5px;
	cursor: pointer;
	margin:  6px 2px 6px 2px;
}

.download-button:hover {
	background-color: var(--body-back-color-dark);
}

.hidden {
	opacity: 0;
	transition: opacity 1s ease-in-out; /* Dauer und Art der Animation */
	visibility: hidden; /* Verhindert, dass das Element interaktiv ist, wenn es unsichtbar ist */
}

.visible {
	opacity: 1;
	visibility: visible; /* Macht das Element wieder sichtbar */
}

.bottom-container {
	display: flex;
	flex-direction: column;
	justify-content: flex-end; /* Elemente am unteren Rand ausrichten */
	text-align: center;
	border: 0px;
	margin-rigth: 20px;
}
