html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	background: black;
}

#container {
	width: 100%;
	height: 100%;
	opacity: 0;
	background: black url('ipad2.jpg') top center no-repeat;
	-webkit-transition: opacity 2s ease-in-out;
}
#container.loaded {
	opacity: 1;
}

canvas {
	position: absolute;
	top: 120px;
	left: 50%;
	margin-left: -230px;
}

#content {
	position: absolute;
	left: 50%;
	top: 530px;
	width: 460px;
	margin-left: -230px;
}
#content p {
	margin: 0;
	color: #666666;
	font: 10px 'Monaco', monospace;
	line-height: 24px;
}
#content p a {
	color: #aaaaaa;
	text-decoration: none;
	-webkit-transition: color 0.25s ease-in-out;
}
#content p a:hover {
	color: white;
}