body{
	background-color: black;
	font-family:Arial;
}
#hand_parent {
	background-color: black;
	position:absolute;
}
.hand_holder{
	position: absolute;
	transition: opacity 1s;
	animation: spin 1s linear infinite;
	-moz-transition: opacity 1s;
	-moz-animation: spin 1s linear infinite;
	-webkit-transition: opacity 1s;
	-webkit-animation: spin 1s linear infinite;
	-o-transition: opacity 1s;
	-o-animation: spin 1s linear infinite;
}

.hand{
	position: absolute;
	border-radius:5px;
	-moz-border-radius:5px;
	-o-border-radius:5px;
}

#iphone {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	min-width:650px;
	min-height:600px;
	position:absolute;
}
.screenshot{
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	-moz-transition: opacity 1s, -moz-transform 1s;
	-o-transition: opacity 1s, -o-transform 1s;
	margin: 70px auto 0px auto;
	display:block;
}
.legend{
	color:white;
	font-size: 22px;
	background: black;
	position:absolute;
	padding : 5px;
	max-width: 200px;
	box-shadow: 0px 0px 10px whitesmoke;
	border-radius: 15px;
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	-moz-transition: opacity 1s, -moz-transform 1s;
	-o-transition: opacity 1s, -o-transform 1s;
}
.copyright {
	color:#777;
	text-decoration: italic;
	position:fixed;
	right:8px;
	bottom:8px;
	font-size:12px;
}

.text_glow {
	text-shadow: 0 0 9px rgb(255, 255, 255);
	color: rgb(255, 255, 255);
}

#title{
	position: absolute;
	width: 100%;
	top: 12px;
	font-size: 68px;
	font-weight:100;
	text-align: center;
}
#link-holder{
	position: absolute;
	right: 15px;
	top: 0px;
	text-align: right;

}
#appstore-img{
	width: 200px;
}
* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@keyframes spin{
	from {
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}

@-moz-keyframes spin{
	from {
		-moz-transform: rotate(0deg);
	}
	to{
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin{
	from {
		-webkit-transform: rotate(0deg);
	}
	to{
		-webkit-transform: rotate(360deg);
	}
}

@-o-keyframes spin{
	from {
		-o-transform: rotate(0deg);
	}
	to{
		-o-transform: rotate(360deg);
	}
}