.content {
    margin-top: 5%;
    font-family: "Visby";
    font-size: 1rem;
    letter-spacing: 5%;
    line-height: 200%;
}

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

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

}

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

.note a {
    margin: 0;
}

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

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

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

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