The dimensions of the image are 6024x4024. I have tried hiding the overflow, but for some reason, I am unable to display the entire image within the container. Instead, it appears that the image is being zoomed in on.
.section1{
background-image: url(section1.jpg);
height: 600px;
width: 100%;
overflow: hidden;
object-fit: cover;
}
<section>
<div class="section1">
</div>
</section>