/* General */

html {
	height: 100%;
	max-height: 100vh;
	width: 100%;
	background: #000 url("../img/bg.jpg") no-repeat left center;
	background-size: cover;
	background-attachment: fixed;
}

body {
	background: none;
	overflow-y: hidden;
}

a {
	cursor: pointer;
}

.nopadding {
	padding: 0 !important;
}

#wrapper {
	position: absolute;
	width: 25%;
	height: 84%;
	top: 0;
	left: 0;
	padding: 5% 9% 5% 64%;
	box-sizing: content-box;
	overflow-y: scroll;
	border: 1vw solid #ff0000;

}

#wrapper h1 {
	margin: 0 0 10px 0;
	color: #fff;
	font-weight: bold;
	font-size: 24px;
}

#wrapper h2 {
	margin: 15px 0 10px 0;
	color: #fff;
	font-weight: bold;
	font-size: 21px;
}

#wrapper p {
	font-size: 14px;
	color: #fff;
}

#wrapper.text {
	overflow-y: scroll;
	color: #fff;
	height: 85%;
	padding: 10px;
	background: rgba(0, 0, 0, .5);
	border-radius: 4px;
	box-sizing: border-box;
}

#wrapper.text h1 {
	font-size: 24px;
}

#wrapper.text h2 {
	font-size: 18px;
}

#wrapper.text p {
	font-size: 14px;
}

img#cover {
	width: 100%;
	height: auto;
	border-radius: 4px;
	overflow: hidden;
}

.icons {
	width: 100%;
	margin: 10px 0;
	padding: 5px 0;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.icons img {
	float: left;
	width: 17%;
	margin: 0 4%;
	height: auto;
}

a#imprint {
	display: block;
	font-size: 12px;
	color: #fff;
	text-align: center;
	margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
	
	#wrapper {
		width: 50%;
		height: auto;
		padding: 30px 24%;
	}
	
}

@media only screen and (max-width: 769px) {
	
	#wrapper {
		width: 70%;
		height: auto;
		padding: 30px 14%;
	}
	
}