.Stars {  
  display: inline-block;
  font-size: 45px;
  font-family: Times; // make sure ★ appears correctly
  line-height: 1;
  background: #fff;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
}
  
  .Stars::before{
    content: '★★★★★';
    letter-spacing: 3px;
}

body {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

* {
  position: relative;
  box-sizing: border-box;
}