/*
Copyright (c) 2025 by Vlad Murariu (https://canigetakiss.com)
*/

.poetry_block {
    width: 100%;
    min-width: 320px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.poetry {
    width: fit-content;
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.verse {
    /* text-align: justify; */
    margin: 0px;
    padding: 0px;
    font-size: 22px;
    line-height: 11px;
    /*letter-spacing: 0.8px;*/
    min-height: fit-content;
    color: white;
    /*font-family: cursive;*/
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.verse:after {
    content: "";
    display: inline-block;
    width: 100%;
}

@media (max-width: 850px) {
    .verse {
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .verse {
        font-size: 19px;
    }
}

@media (max-width: 700px) {
    .verse {
        font-size: 18px;
    }
}

@media (max-width: 650px) {
    .verse {
        font-size: 19px;
    }
}
