.article-details .article-full-image {
    width: 600px;
    margin: 0 auto;          
    display: flex; 
    justify-content: center;
}

.article-details .article-full-image img {
    transition: .3s ease;
}

.article-details .article-full-image img:hover {
    transform: scale(1.05);
}