* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
}

section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-image: url("images/bg.png");
    background-position: center;
    background-size: cover;
    animation: animateBg 5s linear infinite;
}

@keyframes animateBg {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

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

span:nth-child(1) {
    top: 0;
    right: 0;
    left: initial;
    animation-delay: 0s;
    animation-duration: 5s;
}
span:nth-child(2) {
    top: 0;
    right: 120px;
    left: initial;
    animation-delay: 0.5s;
    animation-duration: 6s;
}
span:nth-child(3) {
    top: 0;
    right: 80px;
    left: initial;
    animation-delay: 1.2s;
    animation-duration: 2s;
}
span:nth-child(3) {
    top: 0;
    right: 280px;
    left: initial;
    animation-delay: 0.6s;
    animation-duration: 5s;
}
span:nth-child(4) {
    top: 0;
    right: 20px;
    left: initial;
    animation-delay: 1.3s;
    animation-duration: 6s;
}
span:nth-child(5) {
    top: 0;
    left: 1300px;
    animation-delay: 0.3s;
    animation-duration: 3s;
}
span:nth-child(6) {
    top: 0;
    left: 900px;
    animation-delay: 1s;
    animation-duration: 6s;
}
span:nth-child(7) {
    top: 0;
    left: 600px;
    animation-delay: 0.3s;
    animation-duration: 2s;
}
span:nth-child(8) {
    top: 0;
    left: 500px;
    animation-delay: 1.3s;
    animation-duration: 5s;
}
span:nth-child(9) {
    top: 0;
    left: 1200px;
    animation-delay: 1.6s;
    animation-duration: 3s;
}

@keyframes animate {
    0% {
        transform: rotate(320deg) translateX(600px);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: rotate(320deg) translateX(-2000px);
        opacity: 0;
    }
}

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