/* Interaction 4 – Poem as on home page, follows the mouse. */
body {
    margin: 0;
    font-family: "Adobe Jenson Pro", Georgia, serif;
    background-color: #1C1000;
    color: #fff;
}

.page-main.poem-follow-area {
    min-height: 100vh;
    /* poem is in .poem-follow, not in flow */
}

.poem-follow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
    will-change: transform;
}

.poem-follow .poem {
    /* match home: from style.css .poem */
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
    color: #260B00;
}

.poem-follow .poem-centered {
    max-width: 720px;
}
