CSS background is not covering whole viewport width while using media query @media (max-width: 62.5em)
I tried using background-size: cover
, background-position: top left
, background-repeat: no-repeat
but still nothing works.
here's main CSS styles of that section.
max-width: 100vw;
min-height: 100vh;
background: url(../images/bg-hero-desktop.svg);
background-color: #ebfbff;
background-size: cover;
background-repeat: no-repeat;
padding-top: 20rem;
padding-left: 5rem;