html,
body,
#wrapper {
	height:100%;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: #c8003e;
}

#wrapper td {
	vertical-align: middle;
	text-align: center;
}

img {
	width: 180px;
	transition-property: transform;
	transition-duration: 1s;
}

/* a:hover img,
a:active img,
a:focus img{
	animation-name: rotate; 
	animation-duration: 3s; 
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes rotate {
	0% {
		transform: rotate(360deg);
		width: 180px;
		}
	50% {
		transform: rotate(0deg);
		width: 240px;
		}
	100% {
		transform: rotate(360deg);
		width: 180px;
	}
} */