.blog-search{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-search h2{
    font-size: 40px;
    font-weight: 400;
}

.blog-search input{
    width: 600px;
    height: 40px;
    padding-left: 20px;
    border: none;
    font-size: 16px;
    border-radius: 50px;
}

input:focus{
    outline: none;
}

.blog-search button{
    
    height: 40px;
    width: 100px;
    border-radius: 50px;
    border: none;
    background-color: black;
    color: #ffffff;
}

.blog-search div{
    padding: 5px;
    border-radius: 50px;
    border: 1px solid #111111;
}

.blog-wrapper{
    display: flex;
    justify-content: center;
    
}

.blog-flex{
    display: flex;
    gap: 50px;

}

.blog-contents{
    width: 70%;
}

.blog-contents h1{
    font-size: 40px;
    font-weight: 400;
}


.blog-contents h2{
    font-size: 30px;
    font-weight: 400;
}

.blog-contents img{
    width: 100%;
}


.popular-blogs{
   
    position: sticky;
    top: 20px;
    left: 0;
}

.blog-popular{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.pop-blog-img{
    width: 80px;
    height: 80px;
}

.pop-blog-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pop-blog-content{
    font-size: 16px;
    font-weight: 500;
}

.popular-blogs h4{
    font-size: 25px;
    font-weight: 400;
}

.popular-blogs a {
    text-decoration: none;
    color: black;
}

@media screen and (min-width: 321px) and (max-width: 768px){
.blog-search input{
    width: 250px;
    font-size: 12px;
}

.blog-search div{
    display: flex;
}
}