.corn {
	bottom: 0;
	display: inline-block;
	height: 100px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	transform: rotate(-50deg);
	width: 80px;
}
.corn div.cuerpo {
	background-color: gold;
	border: 1px solid goldenRod;
	border-radius: 60% 60% 150% 150%;
	height: 100%;
}

.corn div.semilla {
	background-color: floralwhite;
	border: 4px solid lightyellow;
	border-radius: 60% 150% 10%;
	position: absolute;
	height: 55px;
	left: 11%;
	top: 36%;
	transform: rotate(45deg);
	width: 55px;
}

.corn {
	animation-name: cornAnimation;
	animation-duration: 4s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
}
@keyframes cornAnimation {
    50%  { transform:rotate(50deg); }
}