My background image on my desktop is responsive and fits perfectly, but when I open it on my mobile device, the image is zoomed in. How can I fix this? Here is my current CSS code:
.welcome-area{
background-image: url(../images/13/Dr-Teals-Banner.jpg);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-height: 100vh;
}
This is my HTML Code:
<section class="welcome-area text-center" data-scroll-index="1">
<div class="overlay-bg-65 flex-center med-padding">
<div class="container">
<div class="welcome-text">
<img src="images/logo-animation/logo.gif"><br><br><h5 class="color-ddd fw-400">DR TEAL'S</h5>
<h1 class="mb-20px color-fff fw-100 cd-headline clip">
<span class="cd-words-wrapper">
<b class="is-visible color-gold">Graphic Designer</b>
<b class="color-gold">Branding</b>
<b class="color-godl">Print</b>
<b class="color-gold">Photography</b>
<b class="color-gold">Digital</b>
</span>
</h1>
<h6 class="color-ddd fw-400 mb-30px">2019-Present</h6>
<a href="https://instagram.com/edisson.alberto/" class="color-fff color-blue-hvr mr-15px"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/edissonhidalgo" class="color-fff color-blue-hvr"><i class="fa fa-linkedin"></i></a>
</div>
<a href="#" class="color-fff fs-35 p-absolute scroll-bottom-btn" data-scroll-nav="2"gt;<i class="fa fa-angle-down"></i> </a>
</div>
</div>
</sectio