
h2 {
    color: #cf79f1; /* This sets the color of h2 elements */
    font-size: 2rem; /* This sets the size of h2 elements */
    text-align: center; /* This centers the h2 elements */
}

ul {
    padding: 0; /* This removes the default padding from the ul */
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 0;
}

.pagination a {
    margin: 0 10px;
    text-decoration: none;
    color: #cf79f1;
    font-size: 1.5rem;
}
.pagination .current {
    margin: 0 10px;
    padding: 5px;
    border: 1px solid #cf79f1;
    color: #cf79f1;
    font-size: 1.5rem;
}