*{
    box-sizing:border-box;
}

body{
    background:#f8f9fa;
    font-family:Arial,sans-serif;
    color:#222;
}

a{
    text-decoration:none;
}


/* Navbar */

.navbar-brand{
    letter-spacing:1px;
}


/* Blog Cards */

.blog-card{
    border:0;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}


.blog-card img{
    height:220px;
    width:100%;
    object-fit:cover;
}


/* Buttons */

.btn-primary{
    border-radius:25px;
    padding:8px 22px;
}


/* Blog Post */

.post-title{
    font-size:42px;
    font-weight:700;
}


.post-content{
    font-size:18px;
    line-height:1.8;
}


.post-content img{
    max-width:100%;
    border-radius:10px;
}


/* Search */

.search-box{
    border-radius:25px;
    padding:12px 20px;
}


/* Footer */

footer a:hover{
    opacity:.7;
}


/* Mobile */

@media(max-width:768px){

.post-title{
    font-size:30px;
}

}