@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');

body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Fira Mono', 'Courier New', monospace;
}

#eternal-scroll {
    width: 60%;
    max-width: 600px;
    margin: 30vh auto;
    white-space: pre;
    height: 60vh;
    overflow: hidden;
}

.verse-manifestation {
    color: white;
    font-size: 1rem;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    #eternal-scroll {
        width: 90%;
        margin: 20vh auto;
        height: 70vh;
    }
    
    .verse-manifestation {
        font-size: 0.85rem;
        text-size-adjust: none;
        -webkit-text-size-adjust: none;
    }
}

@media screen and (max-width: 480px) {
    #eternal-scroll {
        width: 95%;
        margin: 15vh auto;
        padding: 0;
    }
    
    .verse-manifestation {
        font-size: 0.75rem;
        text-size-adjust: none;
        -webkit-text-size-adjust: none;
    }
}
