:root {
	--bg: rgba(253, 253, 253, 1);
	--text: rgba(17, 17, 17, 1);
	--rot: rgba(160, 16, 16, 1);
	--schwarz: rgba(0, 0, 0, 1);
	--grau: rgba(140, 130, 126, 1);
}
@font-face {
	font-family: "Sansation";
		src: url("../fonts/Sansation-Light.woff2") format("woff2"),
		url("../fonts/Sansation-Light.woff") format("woff"),
		url("../fonts/Sansation-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Roboto Condensed";
		src: url("../fonts/Roboto_Condensed-Regular.woff2") format("woff2"),
		url("../fonts/Roboto_Condensed-Regular.woff") format("woff"),
		url("../fonts/Roboto_Condensed-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Roboto Condensed";
		src: url("../fonts/Roboto_Condensed-Bold.woff2") format("woff2"),
		url("../fonts/Roboto_Condensed-Bold.woff") format("woff"),
		url("../fonts/Roboto_Condensed-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	height: 100%;
	max-width: 100vw;
	font-size: 16px;
	font-family: "Roboto Condensed", "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	font-weight: 400;
	line-height: 1.25;
	overflow-x: hidden !important;
}
body {
	background: var(--bg);
	background: linear-gradient(
		to bottom,
		rgba(253, 239, 247, 1) 0%,
		rgba(250, 239, 247, 1) 11%,
		rgba(255, 254, 245, 1) 35%,
		rgba(229, 235, 247, 1) 71%,
		rgba(253, 238, 231, 1) 100%
	);
	background-attachment: fixed;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	color: var(--text);
	text-align: center;
	min-height: 100vh;
}
.marquee-bar {
	color:rgba(255, 255, 255, 1);
	position:relative;
	padding: 10px 0;
	background: var(--grau);
	background:	linear-gradient(var(--grau), var(--grau)) padding-box, linear-gradient(45deg, rgba(184, 134, 11, 1), rgba(255, 215, 0, 1), rgba(212, 175, 55, 1), rgba(184, 134, 11, 1)) border-box;
	background-size: 300% 300%;
	border-bottom: 3px solid transparent;
	box-shadow: 0 6px 10px rgba(160, 160, 160, 0.38);
	padding: 10px 0;
	overflow:hidden;
	line-height:1;
	font-weight: 700;
	letter-spacing: 1.5px;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	will-change:transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-perspective: 1000;
}
.marquee-bar:hover {
	box-shadow: 0 16px 20px rgba(255, 215, 0, 0.6);
}
.marquee-bar i {
	font-weight: 400;
	font-style: normal;
}
.marquee-content {
	display:inline-block;
	white-space:nowrap;
	animation:marquee 38s linear infinite;
	will-change:transform;
	-webkit-font-smoothing:antialiased;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
@keyframes marquee {
	0%	 { transform:translateX(0); }
	100% { transform:translateX(-50%); }
}
@-webkit-keyframes marquee {
	0%	 { -webkit-transform:translateX(0); }
	100% { -webkit-transform:translateX(-50%); }
}
.marquee-content span {
	display:inline-flex;
	align-items:center;
	gap:10px;
	margin-right:50px;
}
.marquee-content svg {
	width: 20px;
	height: 20px;
	filter:brightness(0) invert(1);
	flex-shrink:0;
	fill: rgba(255, 255, 255, 1);
}
.marquee-bar:hover .marquee-content,
.marquee-bar.paused .marquee-content {
	animation-play-state: paused;
}
.marquee-bar {
	touch-action: pan-y;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 15px;
}
h1 {
	font-family: "Sansation", "Roboto Condensed", "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	font-weight: 300;
	font-size: 48px;
	margin: 0 0 10px;
	color: var(--schwarz);
}
.logo {
	display: block;
	width: 280px;
	height: auto;
	max-width: 90%;
	margin: 10px auto 0;
}
.subtitle {
	font-size: 17px;
	margin-bottom: 20px;
	color: rgba(68, 68, 68, 1);
	width: 90%;
	max-width: 600px;
	margin-left:auto;
	margin-right:auto;
}
abbr {
	text-decoration: none;
}
.links {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}
.btn {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	padding: 22px 26px;
	background: var(--rot);
	background:	linear-gradient(var(--rot), var(--rot)) padding-box, linear-gradient(45deg, rgba(184, 134, 11, 1), rgba(255, 215, 0, 1), rgba(212, 175, 55, 1), rgba(184, 134, 11, 1)) border-box;
	background-size: 300% 300%;
	border-radius: 18px;
	border: 5px solid transparent;
	box-shadow: 0 6px 10px rgba(196,40,29,0.38);
	-webkit-tap-highlight-color: transparent;
	padding: 22px 26px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-align: left;
	cursor: pointer;
}
.btn.grey {
	background:	linear-gradient(var(--grau), var(--grau)) padding-box, linear-gradient(45deg, rgba(184, 134, 11, 1), rgba(255, 215, 0, 1), rgba(212, 175, 55, 1), rgba(184, 134, 11, 1)) border-box;
}
.btn[target="_blank"]::after {
	content: url('../img/external.svg');
	display: inline-block;
	width: 18px;
	height: 18px;
	opacity: 0.65;
	margin-bottom: 18px;
}
.btn:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 20px rgba(255, 215, 0, 0.6);
	animation: shine 8s linear infinite;
}
.btn:active {
	transform: translateY(-6px);
	box-shadow: 0 16px 20px rgba(255, 215, 0, 0.6);
	animation: shine 8s linear infinite;
}
@keyframes shine {
	to { background-position: 400% 0; }
}
.btn svg {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	fill: rgba(255, 255, 255, 1);
}
.btn:hover svg {
	fill: rgba(212, 175, 55, 1);
}
.btn i {
	font-weight: 400;
	font-style: normal;
}
.center {
	text-align: center;
	justify-content: center;
}
.footer {
    margin-top: 50px;
    line-height: 1.5;
    font-size: 14px;
    color: rgba(119, 119, 119, 1);
}
.footer a {
    text-decoration: underline dotted;
    color: rgba(119, 119, 119, 1);
}
.footer svg {
    height: 18px;
    width: 18px;
    vertical-align: middle;
    margin-bottom: 2px;
	margin-left: 0.5em;
	fill: var(--rot);
}
.footer img {
    height: 18px;
    width: 18px;
    vertical-align: middle;
    margin-bottom: 2px;
    animation: swing-rotate 4s ease-in-out infinite;
}

@keyframes swing-rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-50deg);
    }
    75% {
        transform: rotate(50deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.red {
	color: var(--rot);
}
#modal-overlay {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:black;
	opacity:0.65;
	z-index:999;
}
#modal-window {
	display:none;
	position:fixed;
	top:50%;
	left:50%;
	width: 600px;
	max-width: 90%;
	transform:translate(-50%,-50%);
	background:white;
	padding:20px;
	z-index:1000;
	border-radius:15px;
}
#title {
	font-weight: 700;
}
#description {
	margin: 20px 0;
}
@media (max-width:480px) {
	.marquee-content { animation-duration:48s; font-size:14px; }
	.marquee-content span { margin-right:30px; }
}
@media (max-width: 768px) {
	h1 {	
		font-size: 40px;
	}
	.btn {
		padding: 18px 22px;
	}
	.btn svg {
		width: 30px;
		height: 30px;
	}
	.btn:hover {
		transform: none;
		box-shadow: none;
		animation: none;
	}
	.btn[target="_blank"]::after {
		width: 15px;
		height: 15px;
		margin-bottom: 15px;
	}
	.btn:hover svg {
		fill: rgba(255, 255, 255, 1);
	}
}
@media (min-width: 768px) {
	.links {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}