.main {
    background-color: #F6F7F8;
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
    padding: 2rem;
    font-size: 15px;     
}

.number {
    color: #2193fd;
    font-size: 25px;
    font-weight: bold;
    display: inline;
    line-height: 100%;
}

.page {
    list-style: none;
    padding: 0;
}

.page li {
    margin-bottom: 10px;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    background-color: white;
    width: 100%;
    height: 4rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

button {
    color: #32C36C;
    font-weight: bold;
    background-color: transparent;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    margin: 0 5px;
}

.num__btns {
    position: relative;
    display: flex;
    flex-direction: row;
}

.num__btn {
    width: 3rem;
    height: 3rem;
    margin: .5rem;
    color: #32C36C;
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    transform: all 1ss;
}
.num__btn--active {
    color: white;
}

.active__indicator {
    background-color: #32C36C;
    position: absolute;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    top: .5rem;
    left: .5rem;
    transition: transform .5s ease-in-out;
    transform: translateX(0rem);
}

button:hover {
    color: #000000;
}

button:disabled {
    color: #ccc;
    cursor: not-allowed;
}


@media (max-width: auto) {
    .num__btns {
        display: none;
    }
    body {
        padding: 5rem;
    }
    .main {
        padding: 2rem;
    }
}