
/* Header/Blog Title */
.header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: #b2b2b2;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    padding-left: 20px;
}

/* Fake image */
.fakeimg {
    width: 100%;
    text-align: center;
    overflow: auto;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.rekomadasi{
    padding: 20px;
    min-height: 200px;
    text-align: center;
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
        width: 100%;
        padding: 0;
    }
}



.card-blog {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    height: 400px;
    cursor: pointer;
}

.card-blog:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

@media(min-width: 427px) {
    .col-sm-3 {
        width: 49%;
        float: left;
        padding-right: 5px;
        padding-left: 5px;
    }
}
@media (min-width: 768px){
    .col-sm-3 {
        width: 33%;
        float: left;
        padding-right: 8px;
        padding-left: 8px;
    }
}
@media (min-width: 992px){
    .col-sm-3 {
        width: 25%;
        float: left;
    }
}