@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');

html,
body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
}
.image-section {
	width: 100%;
    height: 70%;
    overflow: hidden;
    text-align: center;
}
.image {
	height: calc(100% - 150px);
    margin-top: 100px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}
h2,
h3 {
	font-family: 'Roboto', sans-serif;
}
h2 {
	text-align: center;
    font-weight: 300;
    font-size: 30px;
}
h3 {
	text-align: center;
    font-weight: 500;
}
.text-section {
	width: 100%;
	height: calc(30% - 50px);
	overflow: auto;
}
.footer {
	width: calc(100% - 70px);
    height: 50px;
    overflow: auto;
    padding-left: 35px;
    padding-right: 35px;
}
.footer > p {
	margin: 0;
    font-weight: 300;
	text-decoration: none;
	color: #4a4a4a;
}
.footer > p > a {
	text-decoration: none;
	color: #4a4a4a;
}

body > .dsgvo {
	width: 80%;
	height: 100%;
	padding-left: 10%;
	padding-right: 10%;
	text-align: justify;
	overflow: auto;
	color: #4A4B4A;
    font-weight: 300;
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-width: 400px) and (max-width: 1024px){
  h2 {
    font-size: 50px;
	}
	h3 {
		font-size: 35px;
	}
	.footer > p {
    	font-size: 25px;
	}
}