#star-wars-text {
    position: absolute;
    bottom: -100%;
    width: 90%;
    left: 8%;
    text-align: center;
    color: #feda4a;
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    transform-origin: 50% 100%;
    transform: perspective(300px) rotateX(20deg);
    animation: crawl 60s linear forwards;
}

@keyframes crawl {
    from {
        bottom: -100%;
    }
    to {
        bottom: 150%;
    }
}
