.insect{
	/*border: 1px solid black;*/
	position: fixed;
	background-size: cover;
	background-position: center center;
	animation: fly 8s forwards;
}
@keyframes fly{
	to{
		left: -20%;
		top: -20%;
	}
}

#swatter{
	width: 200px;
	height: 200px;
	background-image: url('images/swatter.png');
	/*border: 1px solid black;*/
	background-size: cover;
	background-position: center center;
	position: fixed;
	transform: translate(-50%,-50%);
	/*z-index: 99999;*/
}
html,body{
	cursor: url(images/swatter.png);
}