.box {
    position: relative;
    height: 100%;
    width: 100%;
    float: left;
}
.blogPosts {
    padding: 60px 0;
    float: left;
    width: 100%;
}

.blogContent {
    padding: 30px;
    overflow: hidden;
    height: 100%;
    display: -ms-flexbox;
    -ms-align-items: flex-end;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}
.boxBase {
    position: relative;
    overflow: hidden;

    width: 100%;
    float: left;
    height: 100%;
}

.image {
    float: left;
    width: 100%;
    height: 100%;
}

.contentBase {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.image {
    transition: transform;
    transition-duration: 200ms;
}

.boxBase:hover .image {
    transform: scale(1.2);
}