


.scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #01070a;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scene .rocket {
    position: relative;
    animation: animate_position_stars 0.2s ease infinite;
}

.scene i {
    position: absolute;
    top: -200px;
    background: rgba(255, 255, 255, 0.5);
    animation: animateStars linear infinite;
}

.scene .rocket::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 200px;
    background: linear-gradient(#00d0ff, transparent);
}

.scene .rocket::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 200px;
    background: linear-gradient(#00d0ff, transparent);
    filter: blur(20px);
}

@keyframes animateStars {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200vh);
    }
}

.scene .rocket {
    position: relative;
    animation: animate_position_stars 0.2s ease infinite;
}

@keyframes animate_position_stars {

    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(2px);
    }
}


