.people-wrapper {
    display: grid;
    grid-template-columns: auto auto auto;
}

.people {
    text-align:center;
    margin: 20px;
    max-width: 320px;
}

.people-image {
    height: 150px;
    width: 125px;
    margin: 0 auto 20px auto;
}

.people-image img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.post_search {
    display: flex;
    flex-direction: row;
}

.post_search input {
    max-width: 640px;
    margin: 0 0 40px 0;
}

.search-filter {
    margin-left: 10px;
    max-width: 200px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 50px 0 50px 0;
}

/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {
  .people-wrapper {
    display: grid;
    grid-template-columns: auto auto;
}
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
  .people-wrapper {
    display: grid;
    grid-template-columns: auto;
}
}