@keyframes movement{
	0%{
		margin-left: 0vw;
	}
	50%{
		margin-left: 85vw;
	}
	75%{
		margin-left: 85vw;
	}
	100%{
		margin-left: 85vw;
	}
}
@keyframes blue-ball{
	0%{
		border-radius: 50%;
	}
	15%{
		background: blue;
		border-radius: 50%;
	}
	50%{
		background-color: none;
	}
	100%{
		border-radius: 50%;
	}
	
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
#container {
	background-image: linear-gradient(to bottom, lightblue, lightblue 40%, green 40%, green);
	width: 100%;
	height: 100%;
	position: relative;
}
.sanic {
	width: 218px;
	height: 218px;
	background: url('../images/sanic.png');
	position: absolute;
	top: 200px;
	left: 20px;
	animation:blue-ball 3s infinite, movement ease-in 3s infinite;
}
.sanic:active {
  transform: rotateZ(360deg);
  transition: 100ms;
}
