How to center Image both horizontally and vertically inside a div
HTML :
<div class="main-item">
<div class="main-item--content">
<img src="imgs/item-1.png" alt="item-1" class="main-item--img" />
</div>
</div>
CSS :
.main-item {
height: 95vh;
margin-top: 6rem;
background-color: $color-grey-light;
}
I want the result to be responsive , so that the image stay in the center no matter what is the width of the device screen. The most important thing I want the image to be responsive.