.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
    margin-bottom: 40px;
}

.pagination__item {
    background-color: #042d5b;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
}

.pagination__item:nth-child(2) {
    width: 80px;
    height: 80px;
}

@media screen and (max-width:900px) {
    .pagination {
        gap: 20px;
        margin-bottom: 20px;
    }
}