@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'LibreBaskerville-Regular'; 
  font-style: normal;
  font-weight: 100;

	/* IE9 Compat Modes */
  src: local('LibreBaskerville-Regular.ttf'),
	/* IE6-IE8 */
        url('LibreBaskerville-Regular.ttf') format('embedded-opentype'), 
	/* Super Modern Browsers */
        url('LibreBaskerville-Regular.ttf') format('ttf'),
	/* Modern Browsers */
        url('LibreBaskerville-Regular.ttf') format('ttf'),
	/* Safari, Android, iOS */
        url('LibreBaskerville-Regular.ttf') format('truetype'),
	/* Legacy iOS */
        url('LibreBaskerville-Regular.ttf') format('svg');
}

html, body { 
	font-family: 'LibreBaskerville-Regular';
	width: 100%;
	height: 100vh; /* Fallback for browsers that do not support Custom Properties */
	height: calc(var(--vh, 1vh) * 100);
	margin: 0;
	padding: 0;
	color: #fff;
	background-image: url("startseite.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #999;
}

.hp-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 100%;
	height: 100vh; /* Fallback for browsers that do not support Custom Properties */
	height: calc(var(--vh, 1vh) * 100);
}

.hp-content-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 10px;
}

.hp-content-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 10px 10px;
	-webkit-box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.3); 
	box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.4);
}

.hp-content-header {
	line-height: 1rem;
	margin: 0px 0px 30px 0px;
}

h1 {
	text-align: center;
	font-size: 3.0rem;
	line-height: 2.9rem;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
}

h2 {
	text-align: center;
	font-size: 2.0rem;
	line-height: 1.6rem;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
}

.hp-text {
	margin: 0px 0px 12px 0px;
}

p {
	text-align: center;
	font-size: 1.2rem;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1.2rem;
	margin: 0px;
}

a:link {
color: #fff;
text-decoration: none;
transition: all 0.2s ease-in-out;
}

a:visited { color: #fff;}
a:focus   { color: #fff;}
a:hover   { color: #ff3366;}
a:active  { color: #fff;}


@media only screen and (max-width: 768px) {

	h1 {
		font-size: 2.5rem;
		line-height: 2.5rem;
	}

	h2 {
		font-size: 1.7rem;
	}

	h3 {
		font-size: 1.0rem;
	}

	p {
		font-size: 1.2rem;
		line-height: 1.4rem;
	}
}

@media only screen and (max-width: 575px) {

	h1 {
		font-size: 1.9rem;
		line-height: 2.2rem;
	}

	h2 {
		font-size: 1.4rem;
		line-height: 1.6rem;
	}

	h3 {
		font-size: 1.0rem;
	}

	p {
		font-size: 1.0rem;
		line-height: 1.2rem;
	}
}

