.pagination {
    display: block;
    width: 75%;
    margin: 1em auto;
    text-align: center;
}
.pagination:after {
    content: '';
    clear: both;
}
.pagination-button {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    background-color: #eee;
    color: #333;
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
}
.pagination-button:hover {
    background-color: rgba(202, 25, 19, 0.623);
    color: black;
}
.pagination-button.active {
    background-color: rgb(202, 26, 19);
    color: white !important
}
.pagination-button:last-of-type {
    border-radius: 0 18px 18px 0;
}
.pagination-button:first-of-type {
    border-radius: 18px 0 0 18px;
}

/* arbitrary styles */

.heading {
    text-align: center;
    max-width: 500px;
    margin: 20px auto;
}
.article-loop {
    display: inline-block;
}
.pagination-items {
    display: block;
}