
#postsContainer {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 40px 5px;
    min-height: 300px;
    flex-wrap: wrap;
}

.postContainer {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 200px 90px;
    font-size: 100px;
    gap: 10px;
}

.postImg {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.postText {
    font-size: large;
    color: black;
    margin: 0;
}

.postContainer:hover .postText {
    text-decoration: underline;
}