.posts {
    align-content: start;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}

.posts a {
    color: black;
    text-decoration: none;
}

.post_box {
    width: calc(35vw - 15px);
    height: auto;
    box-sizing: border-box;
}

.search_box {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-items: center;
}

.search_box form {
    display: inline-flex;
}

.search_box input {
    padding: 5px;
    margin-right: 10px;
}

.search_box button {
    padding: 5px 10px;
    margin-right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.posts,
.search_box {
    justify-content: center;
}

.pagination {
    text-align: center;
}

.pagination-button {
    margin: 5px;
}

.post-img {
    width: 90%;
    height: auto;
}



@media screen and (max-width: 750px) {

    .search-btn {
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
        margin-right: 1%;
    }

    a {
        width: fit-content;
        height: fit-content;
    }

    .posts {
        display: block;
        width: 80%;
        margin: auto;
    }

    .search_box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        margin-top: 5%;
    }

    .post_box {
        text-align: center;
        height: fit-content;
        width: fit-content;
        padding: 0%;
    }

    .post-img {
        width: 100%;
        height: auto;
    }
}