css 초기화 기본적인 스타일을 없애닌 명령어
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.cherry{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 500px;
	background-color: white;
}

.kernel{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-image: radial-gradient(#FAEB78, #FFC81E, #FFB400);
	border-radius: 49%;
	transition: 3s;
	animation: radius 3s infinite alternate;
}

.kernel:hover{
	border-radius: 20%;
}

.kernel:active{
	border-radius: 10%;
}

@keyframes radius{
	0%{
		border-radius: 0%;
		
	}

	100%{
		border-radius: 100%;
		
	}
}

.leaf{
	width: 50%;
	height: 25%;
	background-color: green;
	position: absolute;
	top: 0px;
}

.leaf.right{
	background-color: #FF9100;
	border-bottom-right-radius: 70%;
	border-top-left-radius: 50%;
	right: 0px;
}

.leaf.left{
	background-color: #FF9614;
	border-bottom-left-radius: 100%;
	border-top-right-radius: 90%;
	left: 0px;
}

.twig{
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	width: 3%;
	height: 25%;
	background-color: #FFF064;
	position: absolute;


}