@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,latin-ext);

* {
	padding: 0;
	margin: 0;
}

html {
  background: url(bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
	font: 13px 'Open Sans', Arial, Tahoma, Sans;
	color: #333;
	background: #ddd;
	padding-bottom: 30px;
}

.vcard {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -150px;
	margin-left: -250px;
	width: 500px;
	height: 300px;
	background: #fff;
	box-shadow: 0 0 30px 10px rgba(255,255,255,.4);
}
h1 {
	background: #ff900c;
	transform: skewX(-10deg);
	-o-transform: skewX(-10deg);
	-moz-transform: skewX(-10deg);
	-webkit-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	border-bottom: 3px solid rgba(0,0,0,.2);
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0,0,0,.5);
	display: block;
	margin: -10px;
	padding: 10px 20px;
	line-height: 40px;
}

.vcard .content {
	position: relative;
	margin-top: 5px;
	padding: 10px;
}

.vcard .parameters {
	list-style: none;
	float: left;
	margin-left: -16px;
	width: 50%;
}

.vcard .parameters li {
	background: #ff900c;
	margin: 8px 0;
	padding: 5px 35px 5px 15px;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	border-bottom: 2px solid rgba(0,0,0,.2);
}
.vcard .parameters li.highlight {
	font-size: 17px;
	font-weight: bold;
}
.vcard .phone {
	margin-top: 5px;
	font-size: 40px;
	font-weight: bold;
}
.vcard .address {
	color: #666;
}
.vcard .address .name {
	text-transform: uppercase;
}

.vcard .hour {
	width: 120px;
	height: 120px;
	position: absolute;
	top: -40px;
	right: -40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	box-shadow: 0 0 10px 3px #000;
	background: #000;
}

.vcard .car {
	position: absolute;
	top: 60px;
	right: 35px;
	width: 186px;
}
.vcard .car2 {
	position: absolute;
	top: 10px;
	right: 35px;
	width: 186px;
}

.clear {
	clear: both;
}

.description {
	position: absolute;
	top: 50%;
	margin-top: 170px;
	color: #fff;
	text-shadow: 0 0 3px #000;
	text-align: center;
	width: 100%;
}

.warning {
	position: fixed;
	z-index: 2;
	left: 0;
	bottom: 0;
	right: 0;
	height: 20px;
	background: transparent url(warning.png) repeat;
	box-shadow: 0 0 10px 0 #000;
}

@media screen and (max-width: 630px) {
	body {
		background: #fff;
	}
	h1 {
		transform: none;
		-o-transform: none;
		-moz-transform: none;
		-webkit-transform: none;
		-ms-transform: none;
		margin: 0;
	}
	.vcard {
		position: relative;
		width: 100%;
		top: auto;
		left: auto;
		margin: 0;
		height: auto;
	}
	.vcard .hour {
		position: absolute;
		top: 10px;
		right: 10px;
		z-index: 2;
		width: 60px;
		height: 60px;
	}
	.vcard .car2 {
		width: 40%;
		top: -10px;
	}
	html {
		background: none;
	}
	
	.description {
		border-top: 1px solid #ddd;
		padding-top: 15px;
		margin-top: 15px;
		position: relative;
		top: auto;
		margin-top: auto;
		color: #000;
		text-shadow: none;
		text-align: center;
		width: 100%;
	}
}
@media screen and (max-width: 400px) {
	h1 {
		text-align: center;
	}
	.vcard .address, .vcard .phone {
		text-align: center;
	}
	.vcard .car, .vcard .car2 {
		display: none;
	}
	.vcard .hour {
		top: 85px;
		right: 40px;
		width: 70px;
		height: 70px;
	}
}