html,body {
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
}
body {
	background-color: black;
}

#bg {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

#logo_outer {
	position: absolute;
	width: 100%;
	height: 100%;
	
	perspective: 400px;
	-webkit-perspective: 400px;
	-moz-perspective: 400px;
	
	perspective-origin: 50% 50%;
	-webkit-perspective-origin: 50% 50%;
	-moz-perspective-origin: 50% 50%;
}

@media (max-width: 800px) {
	#logo_outer {
		transform: scale(0.5);
	}
}

#logo {
	position: absolute;
	left: 50%;
	top: 50%;
}

.block {
	background-color: white;
	width: 20px;
	height: 20px;
	position: absolute;
}

.block.colour-y {
	background-color: red;
}

#vcard {
	position: absolute;
	z-index: 2;
	bottom: 0px;
	width: 100%;
	text-align: center;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 20px;
	opacity: 0.5;
	transition: opacity 1s;
	padding-top: 30px;
	padding-bottom: 20px;
}

#vcard:hover {
	opacity: 1;
}

#vcard, #vcard a {
	color: rgb(192,192,192);
}

#vcard a {
	transition: color 1s;
}

#vcard a:hover {
	color: red;
}