👾Hello Kam, congratulations for this amazing solution!
🕵️Your Huddle section is almost perfect, there's only on issue to fix with the background, to fix the background in order to keep it full width you need background-size: container
.
See the code below:
body {
background-image: url(./images/bg-mobile.svg);
background-repeat: no-repeat;
background-position: top;
background-color: hsl(257, 40%, 49%);
height: 100vh;
background-size: contain;
}
Hope it helps and happy coding!
0