.pagination {
    display: flex;
    gap: 12px;
    font: 28px 'Source Sans 3', sans-serif;
}

.page-link {
    cursor: pointer;
    background-color: #00903e;
    color: #efc400;
    padding: 4px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background-color: #efc400;
    color: #00903e;
}

.page-link:hover {
    color: #00903e;
    background-color: #efc400;
}

.first {
    display: none;
}

.last {
    display: none;
}