#island {
	bottom: 50vh;
	left: 5%;
	margin: 0;
	padding: 0;
	position: absolute;
	height: 9.86vh;
	width: 40vh;
	scale: 4;
	background-image: url(../images/island.svg);
	background-size: 40vh 9.86vh;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: running;
	animation-name: islandkf;
	animation-duration: 225s;
	animation-delay: -100s;
}

@keyframes islandkf {
	0% {transform: translateX(60vw) translateY(1.5vh) translateZ(-4300px);} /*translate3d(0,0,0) to fix choppy animation in firefox) */
	100% {transform: translateX(-45vw) translateY(1.5vh) translateZ(-4300px);}
}