*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.article_container{
    width:80%;
   margin-left: 50px;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
    align-items: center;

}
.article_container_img{
    display: flex;
   flex-direction: column;
   justify-content: center;
    align-items: center;
}
.article_container img{
    width: 70%;
    height:70%;
    border-radius: 20px;
    margin-top: 20px;
    
}
.article_container .sharebtn{
    width:170px;
    padding:5px;
    border: 1px solid black;
    margin-bottom:10px;
    border-radius: 5px;
    background: #460246;
}
.article_container .sharebtn:hover{
background: #d68e06;
}
.article_container .sharebtn a{
    text-decoration: none;
    color: #fff;
    border-radius:50% ;
    font-size: 20px;
    padding: 5px;
    
}

/* .article_container .icons img{
    width: 25px;
    height: 20px;
} */

a{
    text-decoration:none;
    color: #d58d06;  
}

@media (min-width: 300px) and (max-width: 767px) {
    .article_container img{
        width: 100%;
        height:100%;
    }
}



