/* My Awesome Styles */

/* Diagnostic Styling 
  * Change Background Color
  * Outline Elements
*/

/* Doodle Stage */
#stage {
  background: #ecbdec;
  height: 300px;
  width: 600px;
}

/* svg {
  scale:.5;
} */

#sparkles polygon {
  animation: sparkle-fade 3s ease-in-out infinite;
  opacity: 0;
}

@keyframes sparkle-fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
#sparkles polygon:nth-child(1) {
  animation-delay: 0.5s;
}
#sparkles polygon:nth-child(2) {
  animation-delay: 1s;
}
#sparkles polygon:nth-child(3) {
  animation-delay: 1.5s;
}

/* #cd {
  animation: spin 5s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(0deg);
  }
}
 */
