body {
    background-color: #000;
    overflow: hidden;
}

.rotatedElement {
    transform: rotate(0.2turn);
}

.rotatedElement2 {
    transform: rotate(0.3turn);
}

.rotatedElement3 {
    transform: rotate(0.4turn);
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 30%;
    animation: twinkle 2s ease infinite;
}

.star_inner_vertical {
    position: absolute;
    width: 2px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30%;
}

.star_inner_horizontal {
    position: absolute;
    width: 14px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30%;
}

.half {
    transform: scale(0.5);
}

.large {
    transform: scale(1.1);
}

.color_white {
    background-color: #fff;
}

.color_yellow {
    background-color: #f7f5d6;
}

.color_blue {
    background-color: #abbfff;
}

.color_red {
    background-color: #ffaeab;
}

@keyframes twinkle {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: animate 19s linear infinite;
}

span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes animate {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }

    70% {
        opacity: 1;

    }

    100% {
        transform: rotate(315deg) translateX(-100vmax);
        opacity: 0;

    }

}

span:nth-child(0) {
    top: 0;
    right: 0;
    left: initial;
    animation-delay: 30s;
    animation-duration: 60s;
}
