html {
}

body {
	background-image: url('cat-vro-2.png');
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Comic Neue';
}

#vro-rabbit {
	background-image: url('vro-vro-cat.gif');
	background-repeat: no-repeat;
	background-size: cover;
	animation: rotard 2s linear infinite;
}

#vro-squeege {
	background-image: url('tole-cat.gif');
	background-repeat: no-repeat;
	background-size: cover;
}

#uni-paypal {
	background-image: url('uni_paypal.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

#the-jig {
	background-image: url('jig.gif');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#invert {
	opacity: 0%;
	transition: opacity 1s ease-in-out;
}

#invert:hover {
	opacity: 100%;
	transition: opacity 1s ease-in-out;
}

#nickich {
	animation: nickich_faded 5s ease-in-out infinite;
}

@keyframes nickich_faded {
	0% {
		opacity: 100%;
	}
	50% {
		opacity: 0%
	}
	100% {
		opacity: 100%;
	}
}

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