.blogList {
    margin-bottom: 2%;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.blogPost {
    margin-top: 5%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.imgBlogLinkContainer {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.postImg {
    width: 90%;
    height: auto;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

.postImg:hover {
    filter: brightness(30%);
}

.postText {
    margin: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.postLink {
    font-size: 20px;
    font-weight: bold;
    color: rgb(20, 33, 61);
}

.postLink:hover {
    color: rgb(255, 215, 0);
}

.postDate {
    font-size: 15px;
}

@media (max-width: 1024px) {

    .blogPost {
        margin-top: 5%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
}