/*
Theme Name: Blog
Author URI: #
Version: 1.0
Theme URI: #
Author: Batch 58
Description: A modern blog Theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: WP Theme, Blog Theme, Modern Theme
Text Domain: blog
*/


body{
    background: #ccc;
    margin:0;
    padding:0;
}
.topbar{
    background:#000;
    padding:10px 0px;
    color:#fff;
}
.flex{
    display:flex;
    flex-wrap: wrap;
}
.col-6{
    width: 50%;
}
.col-3{
    width: 25%;
}
.text-right{
    text-align:right;
}
.banner{
    padding: 20px 0px;
    text-align:center;
}
.site-title{
    font-size:50px;
    margin-bottom:10px;
    text-decoration: none;
    color: #000;
}
.site-desc{
    color:#777;
}
.nav{
    background: green;
}
.menubar li{
    list-style-type: none;
}
.menubar li a{
    color:#fff;
    padding:10px;
    display:inline-block;
    text-decoration: none;
}
.post{
    background:#eee;
    padding:10px;
}
.post a{
    text-decoration: none;
    color: #000;
}
.post img{
    max-width: 100%;
    height: auto;
}
.mt-5{
    margin-top:5rem;
}

.img-responsive{
    max-width: 100%;
    height: auto;
}

/* Single Page */
.singla-page-post{
    background: #ddd;
    padding: 10px;
    border-radius: 6px;
}
.sp-heading{
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 10px;
    border-left: 5px solid #555;
}
.sidebar-mt{
    margin-top: 50px;
}
.main-widget{
    margin-bottom: 30px;
}

.comment-area{
    background: #ddd;
    padding: 10px;
    border-radius: 8px;
    margin-top: 50px;
}
.comment-area textarea{
    border-radius: 8px;
    border: none;
    display: block;
    width: 100%;
}

.navigation{
    margin-top: 50px;
}
.navigation ul{
    display: flex;
    padding: 0px;
    justify-content: center;
}
.navigation ul li{
    list-style-type: none;
}
.navigation ul li a{
    background: #ddd;
    padding: 10px;
    text-decoration: none;
    color: #000;
    border: 1px solid #ccc;
}


/* Info Nav */
.social-nav ul, .info-nav ul{
    margin: 0;
    padding: 0;
    display: flex;
    gap:20px
}
.social-nav ul li, .info-nav ul li{
    list-style-type: none;
}
.social-nav ul li a, .info-nav ul li a{
    color: #fff;
    text-decoration: none;
}
.social-nav ul{
    justify-content: end;
}


.footer{
    margin-top: 50px;
    background: #000;
    padding: 20px 0px;
    text-align: center;
    color:#fff;
}