span.evanonearth {
	background-image: url('../img/evanonearth-logo.svg');
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-block;
	top: 6px;
	-webkit-animation: in 1s;
	}

span.evanonearth:hover {
	animation-name: swing;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

	@-moz-keyframes swing {
		from { -moz-transform: rotate(0deg); }
		to { -moz-transform: rotate(-90deg); }
	}
	@-webkit-keyframes swing {
		from { -webkit-transform: rotate(0deg); }
		to { -webkit-transform: rotate(-90deg); }
	}
	@keyframes swing {
		from {transform:rotate(0deg);}
		to {transform:rotate(-90deg);}
	}

	@-moz-keyframes in {
		from { -moz-transform: rotate(-90deg); }
		to { -moz-transform: rotate(0deg); }
	}
	@-webkit-keyframes in {
		from { -webkit-transform: rotate(-90deg); }
		to { -webkit-transform: rotate(0deg); }
	}
	@keyframes in {
		from {transform:rotate(-90deg);}
		to {transform:rotate(0deg);}
	}