*,
*:before,
*:after {
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
  color:white;
  background-color: black;
}

a:link {color: black; text-decoration: none;}
a:visited {color: black; text-decoration: none;}
a:hover {color: black; text-decoration: none;}
a:active {color: black; text-decoration: none;}

.home {
  cursor: pointer;
  padding: 15px;
  font-size: 40px;
}

.cherry1 {
	position: absolute;
	left: 0px;
	top: 50px;
	transform: translate(50%, 50%);
	width: 500px;
	height: 500px;
}

.leaf {
	position: absolute;
	width: 100px;
	height: 50px;
	background-color: green;
	box-shadow: 10px 10px DarkGreen;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
}

.twig {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 100px;
	height: 200px;
	background-color: transparent;
	border: 10px solid DarkGreen;
	border-radius: 50%;
}

.kernel.left {
	position: absolute;
	top: 200px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, DarkRed, black);
	border-radius: 50%;
}

.kernel.right {
	position: absolute;
	top: 200px;
	left: 90px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, Firebrick, black);
	border-radius: 50%;
}


.cherry2 {
	position: absolute;
	left: 200px;
	top: 50px;
	transform: translate(50%, 50%);
	width: 500px;
	height: 500px;
}

.leaf {
	position: absolute;
	width: 100px;
	height: 50px;
	background-color: green;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
}

.twig {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 100px;
	height: 200px;
	background-color: transparent;
	border: 10px solid DarkGreen;
	border-radius: 50%;
}

.kernel.left {
	position: absolute;
	top: 200px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, DarkRed, black);
	border-radius: 50%;
}

.kernel.right {
	position: absolute;
	top: 200px;
	left: 90px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, Firebrick, black);
	border-radius: 50%;
}


.cherry3 {
	position: absolute;
	left: 400px;
	top: 50px;
	transform: translate(50%, 50%);
	width: 500px;
	height: 500px;
}

.leaf {
	position: absolute;
	width: 100px;
	height: 50px;
	background-color: green;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
}

.twig {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 100px;
	height: 200px;
	background-color: transparent;
	border: 10px solid DarkGreen;
	border-radius: 50%;
}

.kernel.left {
	position: absolute;
	top: 200px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, DarkRed, black);
	border-radius: 50%;
}

.kernel.right {
	position: absolute;
	top: 200px;
	left: 90px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, Firebrick, black);
	border-radius: 50%;
}

.cherry4 {
	position: absolute;
	left: 600px;
	top: 50px;
	transform: translate(50%, 50%);
	width: 500px;
	height: 500px;
}

.leaf {
	position: absolute;
	width: 100px;
	height: 50px;
	background-color: green;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
}

.twig {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 100px;
	height: 200px;
	background-color: transparent;
	border: 10px solid DarkGreen;
	border-radius: 50%;
}

.kernel.left {
	position: absolute;
	top: 200px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, DarkRed, black);
	border-radius: 50%;
}

.kernel.right {
	position: absolute;
	top: 200px;
	left: 90px;
	width: 100px;
	height: 100px;
	background-image: linear-gradient(180deg, Firebrick, black);
	border-radius: 50%;
	animation: mymove 5s infinite;
}

@keyframes mymove{
	from {
		top : 200px;
	}
	to {
		top: 400px;
	}
}



