body {
	background-color: #592230;
}

div {
/*	width: 100%;
	height: 100%;*/
	display: table-cell;
	position: absolute;
	left: 80%;
	margin-left: -40%;
	padding-top: 20%;
	padding-bottom: 20%;
	vertical-align: middle;
}


p {
	display: table-cell;
	width: 180px;
	height: 180px;
	text-align: center;
	vertical-align: middle;
	border: double #94947f;
	border-radius: 100%;
	border-width: 20px;
	color: #62620d;
	font-family: verdana;
	font-size: 30px;
	font-style: bold;
	-moz-box-shadow: 0 0 5px 5px #888;
    -webkit-box-shadow: 0 0 5px 5px #888;
    box-shadow: 0 0 3px 1px #888;
    text-shadow: 1px 1px 1px #888;
}



.animation {
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes rotating {
	100% {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes rotating {
	100% {
		-webkit-transform: rotateZ(360deg);
		-ms-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

.rotating {
	-webkit-transform-origin: middle center;
	-ms-transform-origin: middle center;
	transform-origin: middle center;
	-webkit-animation-name: rotating;
	animation-name: rotating;
}