.stars-container {
    display: grid;
    place-items: center;
}

.stars  {
    position: relative;
    white-space: nowrap;
}

.cover  {
    background: white;
    height: 100%;
    overflow: hidden;
    mix-blend-mode: color;
    position: absolute;
    top: 0;
    right: 0;
}

.stars svg {
    fill: gold;
}

.stars svg .shadow, .myShadow {
    filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.4));
}