.hr-text {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

.hr-text-left {
    display: flex;
    align-items: left;
    text-align: left;
    width: 100%;
    margin: 20px 0;
}

.hr-text::before,
.hr-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #222222;
}

.hr-text:not(:empty)::before {
    margin-right: .25em;
}

.hr-text:not(:empty)::after {
    margin-left: .25em;
}