@import url(./variables.css);

#stars{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.star-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.star {
 display: flex;
 justify-content: center;
 align-items: center;

  width: 200px;
  height: 200px;
 background-image: linear-gradient(45deg,  #ab8020,#fbe87b, #ab8020);

  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}
.star p{
  color: black;
  font-size: 5rem;
  font-weight: bolder;
}
