body{
    background-color: #b4b4b4;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden; /* Prevents scrollbars */
    color: #302317;
}

.splash {
    position: fixed; /* Lifts it above the poem rows */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly offsets its own width/height */
    z-index: 10; /* Ensures it stays on top of the poems */
}

.splash img {
    width: min(512px, 80vw);
    height: auto;
    animation: splashAnimation 8s infinite;
}

/* ===== Animations ===== */

@keyframes splashAnimation {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
}


/* ===== Waiting Approval ===== */

.poem-wall {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
}

.row {
    white-space: nowrap;
    display: flex;
    flex: 1;
    align-items: center;
    font-size: clamp(0.75rem, 2.5vw, 2rem);
    font-style: italic;
}

.track {
    display: flex;
    animation: slideLeft linear infinite;
}

@keyframes slideLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Slide half the width (the cloned set) */
}