
.starmap {
    position: relative;
    overflow: hidden;
    width: 100%;

}


.starmap__canvas {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}


.starmap__content {
    position: relative;
    z-index: 2;
    padding: 32px 24px;
}

.star {
    position: absolute;
    border-radius: 50%;
    animation-name: starFade;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: both;
    animation-timing-function: linear;
}

@keyframes starFade {
    0%   { opacity: 0.25; transform: scale(0.95); }
    100% { opacity: 1;    transform: scale(1); }
}
