* {box-sizing:border-box;}
html, body {
	margin:0;
	padding:0;
}

html {
	height:100%;
	min-height:100%;
}

body {
	font-family: 'Helvetica', 'Arial', sans-serif;
	background-color: #5f6d6d;
}

img {
	width: 100%;
}

h1 {
	font-size: 30px;
	letter-spacing: 2px;
	margin-bottom: .5em;
}

a {
	color:#000;
	text-decoration:none;
}

ul {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0 60px;
}

ul li {
	display: flex;
	margin-left: 2em;
}

ul li#impressum-wrapper,
ul li#startseite-wrapper {
	width: 100%;
	justify-self: flex-start;
	margin-left: 0;
}

#footer {
	position:absolute;
	left: 0;
	bottom:20px;
	font-size: .9em;
	color: #363531;
}

#instagram img {
	transition: .3s ease;
}

#instagram:hover img {
	transform: scale(1.2);
}
#instagram img {
	width: 40px;
}

#youtube img {
	transition: .3s ease;
}

#youtube:hover img {
	transform: scale(1.2);
}
#youtube img {
	width: 50px;
}

a#button {
	padding:5px 25px;
	border:2px solid #fff;
	text-transform:uppercase;
}

a#button:hover {
	text-decoration:none;
}

.left,
.right {
	width: 50%;
	float: left;
}

.right {
	overflow: hidden;
}

#spotlight {
	float: left;
	max-width: 444px;
	max-height: 455px;
	padding-left: 30px;
}

#contact {
	float: right;
	max-width: 636px;
	max-height: 476px;
	transition: .7s ease;
}

#contact:hover {
	transform: scale(1.05);
}

#form-wrapper {
	clear: both;
	padding: 0 5vw 60px 5vw;
	text-align: center;
}

#form {
	display: inline-block;
	max-width: 1200px;
	text-align: left;
}

@media screen and (max-width: 576px) {
	body .g-recaptcha {
		float: none;
	}

	body textarea {
		height:160px;
	}

	body input[type="submit"] {
		width: 100%;
		margin-top: 15px;
	}

	body #form-wrapper {
		padding-top: 30px;
	}

	body #footer {
		bottom:0;
		margin-bottom: 5px;
	}
}

@media screen and (max-width: 768px) {
	#spotlight,
	#contact {
		position: relative;
		padding: 0 0 0 15px;
	}

	#contact {
		margin-top: 30px;
		right: 0;
	}

	#form-wrapper {
		padding-top: 60px;
	}
}

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

	#contact {
		right: 5%;
	}
}

input, textarea {
	width:100%;
	padding:10px;
	font-size:22px;
	margin-bottom:10px;
	background-color: rgba(0,0,0,.6);
	box-shadow: 3px 3px 15px #333;
	border: none;
	color: #fff;
	font-family: 'Helvetica', 'Arial', sans-serif;
}
input[type="submit"] {
	cursor:pointer;
	opacity:1;
	padding: 20px;
	background-color: rgba(0,0,0,0.85);
	color: #ffffff;
	width:35%;
	transition: .3s ease;
	float:left;
}

input[type="submit"]:hover {
	background-color: rgba(0,0,0,0.9);
}

textarea {
	height:200px;
}

.g-recaptcha {
	display: inline-block;
	float: right;
}

.validation {
	clear: both;
	padding-top: 20px;
	text-align: left;
}