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

/* logo styles */

svg#logo {
	max-width: 600px;
	margin: 20px;
}

@keyframes green {
  100% {
		fill: #a0cc3a;
  }
}

#inner-leaf {
	animation: green 1.5s forwards;
}


@keyframes grow {
  100% {
		transform: rotate(10deg) scale(1.2);
		transform-origin: 66px 79px;
  }
}

#leaf {
	animation: grow 1.5s forwards;
}
