/* Temporal 1: Poem scrolls horizontally right-to-left, one line, seamless loop */

.temporal-1-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.scroll-track {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    white-space: nowrap;
    animation: temporal1-scroll 55s linear infinite;
}

.poem-line {
    font-family: "Adobe Jenson Pro", Georgia, serif;
    font-size: 50px;
    color: #260B00;
    padding-right: 2em;
}

.poem-line + .poem-line {
    padding-right: 0;
}

@keyframes temporal1-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
