.blog_card {
    width: auto;
    height: auto;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    font-size: 2em;
}

.blog_date {
    color: #556666;
    opacity: .5;
    font-size: 16px;
    padding: 8px 21px;
}

.blog_title {
    font-size: 18px;
    padding: 18px 21px 13px;
    color: #3F474C;
    margin-bottom: unset;
    font-weight: 500;
}

.blog_card {
    margin: 10px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.blog_card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.blog_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 5px 5px;
}

.blog_card a {
    text-decoration: none;
}

.blog_h2 {
    color: #3f474c;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 40px;
    font-family: "Roboto Black",sans-serif;
}

@media screen and (max-width: 700px) {
    .blog_h2 {
        font-size: 22px;
        line-height: 30px;
        color: #3f474c;
        font-family: "Roboto Black",sans-serif;
        font-weight: 900;
        margin-bottom: 20px;
    }
    
}