@charset "UTF-8";
/* CSS Document */

/* logo styles */

svg#logo {
	max-width: 600px;
	margin: 20px;
}
#inner-leaf {
	transition: fill .8s ease-out;
}
#logo:hover #inner-leaf {
	fill: #a0cc3a;
}
#leaf {
	transition: transform .3s ease-out;
	transform-origin: 66px 79px;
}
#logo:hover #leaf {
	transform: rotate(10deg) scale(1.2);
}
