/*
	twinkling star
	background: rgba(242,181,0,0.0);
*/
body {
  background: black;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(254,255,127,0.0);
  border-radius: 5px;
}

@keyframes twinkle {
  0% {
    transform: scale(1, 1);
    animation-timing-function: ease-in;
  }
  20% {
    transform: scale(1, 1);
	opacity: 0.4;
    animation-timing-function: ease-in;
  }
  40% {
    transform: scale(0.45, 0.45);
	opacity: 0.6;
    animation-timing-function: ease-in;
  }
  60% {
    transform: scale(0.8, 0.8);
	opacity: 1;
    animation-timing-function: ease-out;
  }
  80% {
	opacity: 0.0;
    transform: scale(1, 1);
  }
  100% {
	opacity: 0.0;
    transform: scale(1, 1);
  }
}
