*{
	font-family: 'Open Sans', sans-serif;
}

.image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin:-100px 0 0 -100px;
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }

#info{
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}

.spacerH{
	display: inline-block;
	width: 50px;
}

.spaverV{
	height: 20px;
}

a{
	color: #111;
	text-decoration: none;
}