body {
  margin: 0;
  width: 100%;
  height: 100%;
}

#svg {
  position: fixed;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

polygon {
  stroke: #fff;
  stroke-width: 1;
}

.flower {
  animation-name: animation;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes animation {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1) rotateZ(0);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1) rotateZ(360deg);
  }
}
