  #pdfPreviewCanvas {
            display: none;
        }

        body {
            width: 100%;
            height: 100%;
            background: url(https://images.wallpaperscraft.com/image/single/starry_sky_stars_black_118255_3840x2160.jpg);
            overflow: hidden;
            background-size: cover;
        }

        .fade {
            position: relative;
            width: 100%;
            min-height: 60vh;
            top: -25px;
            background-image: linear-gradient(0deg, transparent, black 75%);
            z-index: 1;
        }

        .star-wars {
            display: flex;
            justify-content: center;
            position: relative;
            height: 800px;
            color: #feda4a;
            font-family: 'Pathway Gothic One', sans-serif;
            font-size: 500%;
            font-weight: 600;
            letter-spacing: 6px;
            line-height: 150%;
            perspective: 400px;
            text-align: justify;
        }

        .crawl {
            position: relative;
            top: 99999px;
            transform-origin: 50% 100%;
            animation-duration: 30s;
            /* Adjust duration */
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            animation-name: crawl;
        }

        .crawl>.title {
            font-size: 4rem;
            text-align: center;
        }

        .crawl>.title h1 {
            margin: 0 0 100px;
            text-transform: uppercase;
        }

        @keyframes crawl {
            0% {
                top: -100px;
                transform: rotateX(20deg) translateZ(0);
            }

            100% {
                top: -6000px;
                transform: rotateX(25deg) translateZ(-2500px);
            }
        }

        #pageInfo {
            text-align: center;
            color: white;
        }