:root {
	
	--primaryColor1:#222222;
	--primaryColor2:#fff;
}

@font-face {
	font-family: 'Amsterdam Handwriting';
	font-style: normal;
	font-weight: 400;
	src: local('Amsterdam Handwriting'), url('/fonts/amsterdam-handwriting/AmsterdamhandwritingRegular-6Y1Vo.woff') format('woff');
}

/* gfs-didot-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Didot';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/didot/didot.woff') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* fira-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/fira-sans/fira-sans-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fira Sans';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/fira-sans/fira-sans-v18-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/fira-sans/fira-sans-v18-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Fira Sans';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/fira-sans/fira-sans-v18-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Grundlegende Reset-Einstellungen */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 20px;
	line-height: 1.5;
	
}

/* Basis-Styles für die Seite */
body {
	font-size: 20px;
	font-family: 'Fira Sans', Arial, Helvetica, sans-serif;
	line-height: 1.5;
	background-color: #f5f5f5;
	color: var(--primaryColor1);
}

p {
	margin-bottom:2rem;
}

p + p {
	margin-top:-1rem;
}

a {
	color: var(--primaryColor1);
}

h1 {
	margin-bottom:2rem;
}

h2 {
	font-size:60px;
	line-height:100%;
	text-transform:uppercase;
	font-family: 'Didot';
	font-weight:normal;
	margin-bottom:2rem;
	hyphens:auto;
}

.small {
	font-size:0.8rem;
}

.preHeadline {
	font-family: 'Amsterdam Handwriting';
	font-size:40px;
}

.routeBox {
	border:2px solid var(--primaryColor1);
	display:block;
	text-decoration: none;
	padding:0.75rem 1.5rem;
	border-radius:1rem;
	text-align:left;
	margin-bottom: 1rem;
}
.routeBox > * {
	display:block;
}


/* Zentrierter Seitenbereich */
.container {
	max-width: 500px;
	margin: 0 auto;
	background-color: #ffffff;
	overflow:hidden;
}

section {
	background-size:cover;
	background-position: center center;
	padding:3rem 1.5rem;
	box-sizing: border-box;
	text-align:center;
	position:relative;
	overlay:hidden;
}

section > *:last-child {
	margin-bottom:0;
}

.sectionHeight_var1 {
	min-height:100vh;
	display:flex;
	align-items:flex-end;
	justify-content:center;
}

.sectionPadding_var0 {
	padding:0;
}

.sectionPadding_var1 {
	padding-top:5rem;
	padding-bottom:5rem;
}


.multiCols {
	display:flex;
	gap:2rem;
	padding:0 8%;
}

.sectionBackgroundColor_varDark {
	color:var(--primaryColor2);
}

.verticalDevider {
	height:60px;
	width:2px;
	border:none;
	background:var(--primaryColor1);
	margin:0 auto;
	margin-top:2rem;
	margin-bottom:2rem;
}

.horizontalAlignCenter {
	margin:0 auto;
	display:table;
}

.tornTop {
	position:absolute;
	left:-10px;
	right:-10px;
	top:-1px;
	width:calc(100% + 20px);
}
.tornBottom {
	position:absolute;
	left:-10px;
	right:-10px;
	bottom:-1px;
	width:calc(100% + 20px);
}