* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
}

.text {
    position: relative;
    width: 540px;
    text-indent: 2em;
    color: rgb(255, 255, 255);
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    text-align: justify;
}

.text span {
    position: relative;
    display: inline-block;
    transform-origin: bottom;
    text-indent: 0;
}

.text .move {
    animation: up 2s linear forwards;
}

@keyframes up {
    100% {
        opacity: 0;
        filter: blur(20px);
        transform: translate(600px, -500px) rotate(360deg) scale(5);
    }
}