.blog-entry-content-container div{
    padding:15px;
}

.blog-entry{
    width:375px;
    box-shadow: 0px 20px 45px rgba(0,0,0,0.08);
    transition: transform .2s ease-out;

}

.blog-entry:hover{
    transform:scale(1.01) translateY(-10px);

}
.blog-entry-image-container img{
    height:411px;
    width:100%;
    object-fit: cover;
}

.blog-entry-content-container{
    padding:30px;
    text-align:center;
    min-height:350px;
    background-color:white;
}

.blog-entry-outer-wrap{
    color:black; 
    margin:20px;
}

@media(max-width:500px){
    .blog-entry{
        width:100%;

        margin:20px 0px;
    }

    .blog-entry-outer-wrap{ 
        margin:20px 0px;
    }
}


