#myBackground {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
}

.content-dark {
	background: rgba(0, 0, 163, 255);
	color: white;
}

.content-dark-light {
	background: rgba(0, 0, 163, 0.8);
	color: #f1f1f1;
}

.content {
	background: rgba(0, 0, 0, 0.8);
	color: #f1f1f1;
}

.content-bottom {
	background: rgba(0, 0, 0, 0.5);
	color: darkgrey;
	padding: 20px;
	z-index: -1;
}

.button-header {
	width: 170px;
}

.nocopy {
	-ms-user-select: None;
	-moz-user-select: None;
	-webkit-user-select: None;
	user-select: None;
}

/* .link:link {
	color: white;
	background-color: transparent;
	text-decoration: none;
}

.link:hover {
	color: blue;
	background-color: transparent;
	text-decoration: underline;
}

.link:visited {
	color: white;
	background-color: transparent;
	text-decoration: none;
} */

#btn-back-to-top {
	position: fixed;
	bottom: 70px;
	right: 10px;
	display: none;
	z-index: 1000;
}

.marquee {
	max-width: 100vw;
	/* iOS braucht das */
	white-space: nowrap;
	overflow: hidden;
	/* hier evtl. noch font-size, color usw. */
}

.marquee span {
	display: inline-block;
	padding-left: 105%;
	/* die zusätzlichen 5% erzeugen einen verzögerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
	animation: marquee 10s linear infinite;
}

/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
.marquee span:hover {
	animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}
}

/* custom accordion */
.accordion-button::after {
	order: -1;
	margin-left: 0;
	margin-right: 0.5em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E");
	transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3E%3C/svg%3E");
}

@keyframes pulse-glow {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
}

.pulse-glow {
	animation: pulse-glow 2s infinite;
}

/* https://www.w3.org/WAI/ update */

body {
	font-family: Verdana;
	font-size: 18px;
}
