.content {
    margin-top: 5%;

    font-size: 1rem;
    letter-spacing: 5%;
    line-height: 200%;
}

.content li {
    margin-top: 0;
    text-align: justify;
    text-align-last: left;
}

.poem-list {
    list-style: symbols(cyclic "↣");

}

.poem {
    display: flex;
    flex-direction: row;
}

.poem a {
    margin: 0;
}

.poem p {
    /* margin-top: 0; */
    /* margin-left: auto; */
    margin: 0 auto;
    opacity: .7;
}

/* ----MOBILE VIEW---- */
@media only screen and (max-width: 767px) {
    .poem-list {
        list-style: symbols(cyclic "↣");
        padding-left: 5%;
    }

    .poem {
        flex-direction: column;
        line-height: 1rem;
    }

    .poem p {
        margin-right: 0;
    }
}