* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
.words {
    font-family:"Arvo";
    position: absolute;
    left: auto;
    top: 15vh;
    bottom: auto;
    right: auto;
    width: 100%;
    background-color: transparent;
    color: honeydew;
    text-align: center;
    font-size: 3rem;
    z-index: 2;
}
.words span {
    font-size: 1.15rem;
    color: #fdfdfd;
}
.scene {
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
    height: 100vh;
    background: #01070a;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scene .rocket.landed {
    position: absolute;
    left: auto;
    top: auto;
    bottom: -6px;
    opacity: 0.85;
    right: auto;
}
.scene .rocket:not(.landed) {
    position: relative;
    animation: animate 0.2s ease infinite;
}
@keyframes animate {
    0%,100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(2px);
    }
}
.scene .rocket:not(.landed)::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 200px;
    background: linear-gradient(#00d0ff,transparent);
}
.scene .rocket:not(.landed)::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 200px;
    background: linear-gradient(#00d0ff,transparent);
    filter: blur(20px);
}
.scene i {
    position: absolute;
    top: -250px;
    background: rgba(255,255,255,0.5);
    animation: animateStars linear infinite;
}
@keyframes animateStars {
    0% {
        transform: translateY(150vh)rotateZ(0deg)rotateX(-180deg);
    }
    100% {
        transform: translateY(0)rotateZ(365deg)rotateX(0deg);
    }
}