body {
	overflow-y: scroll;
}

.container {
	width: 80%;
}

.header {
	width: 100%;
	height: 350px;
	margin: auto;
	margin-top: 20px;
	background-image: url("../img/header.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.headbild {
	width: 100%;
	height: 350px;
	margin: auto;
	margin-top: 20px;
	background-image: url("../img/headbild.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.header h1 {
	font-size: 100px;
	font-style: normal;
	color: white;
	display: inline-block;
	vertical-align: middle;
	text-shadow: 0.1em 0.1em 0.2em black;
}

.produkt {
	padding-top: 30px;
}

.nav > li > a {
	background-color: rgb(228, 228, 228);
	border: rgb(182, 182, 182) 1px solid;
    border-radius: 4px;
	margin: 4px;
}

.kaufen {
	text-align: center;
	background-color: #67BD50;
	padding-top: 20px;
	padding-bottom: 20px;
}

.film {
	margin: auto;
	width: 70%;
}

.text {
	padding: 10px 10px;
	color: black;
	height: 350px;
	border: solid 0px black;
}

a {
    color: gray;
	font-size: large;
}

.text button {
	position: relative;
}


.bild {
	height: 350px;
	display: flex; 
    justify-content: center; 
    align-items: center;
	border: solid 0px black;
}

/* Footer */
.footer {
	text-decoration: none;
	margin-bottom: 100px;
  }
.links {
	text-align: center;
  }

.mitte {
	text-align: center;
  }

.rechts {
	text-align: center;
  }

.bi {
	font-size: 40px;
  }

/* Media */


@media screen and (max-width: 1200px) {
	.header {
	  height: 250px;
	  line-height: 250px;
	}
	.headbild {
		height: 250px;
		line-height: 250px;
	  }
	.header h1 {
		font-size: 80px;
	}
	.container {
		width: 90%;
	}	
}

@media screen and (max-width: 600px) {
	.header {
	  height: 150px;
	  line-height: 150px;
	}
	.headbild {
		height: 150px;
		line-height: 150px;
	  }

	.header h1 {
		font-size: 60px;
	}
	.container {
		width: 90%;
	}

	a {
		color: gray;
		font-size: small;
	}
}

@media screen and (max-width: 320px) {
	.header {
	  height: 100px;
	  line-height: 100px;
	}

	.headbild {
		height: 100px;
		line-height: 100px;
	  }

	  .header h1 {
		font-size: 40px;
	}
}


