.windmill{
	position: fixed;
	top:20%;
	left: 2.5%;
	height: 40%;
	width: 15%;
}
.windmill .toppart img{
	height: 70%;
	width: 100%;
	-webkit-transform-origin: 51% 60.7%;
	transform-origin: 51% 60.7%;
	animation: rotate 5s infinite;
	-webkit-animation: rotate 5s infinite;
	-webkit-animation-timing-function:linear;
	animation-timing-function:linear;
}
.windmill .side-container{
	position: relative;
	height: 100%;
	width: 100%;
}
.windmill .tower{
	position: absolute;
	top:50%;
	width: 100%;
}
.windmill .tower img{
	height: 70%;
	width: 5.5%;
	position: relative;
	left: 48.5%;
}

@keyframes rotate{
	0%{
		transform:rotate(0deg);

	}
	100%{
		transform:rotate(360deg);
	}
}
@-webkit-keyframes rotate{
	0%{
		transform:rotate(0deg);

	}
	100%{
		transform:rotate(360deg);
	}

}