.star-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	pointer-events: none;
	overflow: hidden;
  }
  
  /* .star {
	position: absolute;
	top: -50px;
	font-size: 1.5rem;
	color: #cccccc;
	opacity: 0.8;
	pointer-events: none;
  } */

  @keyframes flicker {
    0%   { opacity: 1; }
    50%  { opacity: 0.7; }
    100% { opacity: 1; }
  }
  
  .star {
    position: absolute;
    top: -50px;
    font-size: 2rem;
    color: red;
    animation: flicker 1.5s infinite ease-in-out;
    z-index: 9999;
  }
  
  
  