@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('vorschau/LibreBaskerville-Regular.ttf') format('embedded-opentype'), 
	/* Super Modern Browsers */
        url('vorschau/LibreBaskerville-Regular.ttf') format('ttf'),
	/* Modern Browsers */
        url('vorschau/LibreBaskerville-Regular.ttf') format('ttf'),
	/* Safari, Android, iOS */
        url('vorschau/LibreBaskerville-Regular.ttf') format('truetype'),
	/* Legacy iOS */
        url('vorschau/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: #444;
	background-image: url("herz_aqua_smal.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #d3f7f1;
}

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

.hp-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(246, 253, 252, 0.8);
	padding: 50px 10px;
	-webkit-box-shadow: 0px 0px 10px 5px #D9D9D9; 
	box-shadow: 0px 0px 10px 5px #D9D9D9;
}

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

h1 {
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.7rem;
	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;
}

h3 {
	text-align: center;
	font-size: 1.2rem;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
}

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

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

.hp-button {
text-align: center;
background: #9BD8CD;
background: linear-gradient(0deg, rgba(155, 216, 205, 1) 0%, rgba(201, 247, 238, 1) 70%);
padding: 5px 18px;
font-size: 1.2rem;
border: 1px solid #5d948b;
border-radius: 8px;
margin: 20px 0px 0px 0px;
color: #444;
transition: all 0.3s ease-in-out;
}

.hp-button:hover {
background: #1F8A79;
color: #fff;
}

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

a:visited { color: #777;}
a:focus   { color: #777;}
a:hover   { color: #029a82;}
a:active  { color: #777;}

.copyrights {
	display: inline;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 10px;
	color: #777;
}


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

	h1 {
		font-size: 2.0rem;
	}

	h2 {
		font-size: 1.7rem;
	}

	h3 {
		font-size: 1.0rem;
	}

	p {
		font-size: 1.2rem;
	}

	.hp-button {
	font-size: 1.0rem;
	}
	
	html, body { 
	background-image: url("herz_aqua_big.jpg");
	}

}

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

	h1 {
		font-size: 1.7rem;
	}

	h2 {
		font-size: 1.4rem;
	}

	h3 {
		font-size: 0.9rem;
	}

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

	.hp-button {
	font-size: 1.0rem;
	}
}

