body {
	background-size: cover;
	background-image: url(img/bg_s.jpg);
	font-family: 'Open Sans Condensed', sans-serif;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: flex-end;
}

a {
	text-decoration: none;
	color: inherit;
}

div#preloader { 
	position: fixed; 
	left: 0; 
	top: 0; 
	z-index: 999; 
	width: 100%; 
	height: 100%; 
	overflow: visible; 
	background: #333 url('img/preloader.svg') no-repeat center center; 
}

#visitenkarte {
	width: 400px;
	height: 600px;
	margin-right: 20px;
	display: block;
	background-color: rgba(255,255,255,0.5);
	border: 4px solid #000;

}

#logo {
	width: 250px;
	margin: 20px auto 25px auto;
	display: block;
}

#content {
	font-size: 1.2em;
	text-align: center;
	letter-spacing: 4px;
	text-transform: lowercase;
}

#name {
	font-size: 1.8em;
	letter-spacing: 8px;
}

@media screen and (max-width: 450px) {
	body {
		font-size: 14px;
	}
	
	#logo {
		width: 200px;
	}
	
	#visitenkarte {
		width: 90%;
		margin: 10px auto;
		height: 500px;
	}
}

@media (min-resolution: 192dpi) { 
    body {
		background-image: url(img/bg_m.jpg);
	}
}


