﻿
.container1 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px;
}

.card1 {
    position: relative;
    background: #fff;
    max-width: 300px;
    margin: 25px;
    box-shadow: 0 5px 25px rgb(1 1 1 /20%);
    border-radius: 10px;
    overflow: hidden;
}

.pagination1 {
    text-align: center;
    margin: 30px 30px 60px;
    user-select: none;
}

    .pagination1 li {
        display: inline-block;
        margin: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 /10%);
    }

        .pagination1 li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
            line-height: 45px;
        }

.previous-page, .next-page {
    background: White;
    border-radius: 45px;
    width: 80px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .previous-page:hover {
        transform: translateX(-5px);
    }

    .next-page:hover {
        transform: translateX(5px);
    }

.current-page, .dots {
    background: #ccc;
    width: 45px;
    cursor: pointer;
    border-radius: 50%;
}

.disable {
    background: #ccc;
}
