Looks good!
For the box svg , add it to the html before the div .image
, then in the css set it to position: relative
and position it with top:
and left:
like this
display: inline;
position: relative;
left: -177px;
top: 282px;
Try removing the heights from the .wrapper
and .accwrapper
, that should keep it from popping out of the wrapper.
For hiding the images, it looks like you could add the bg-pattern to the .image
div and then set it to position: relative
and z-index: -1
, and overflow: hidden
, though I'm not sure it will work?
I ended up using background-image:
with url()
.
background-image: url(../images/illustration-woman-online-desktop.svg), url(../images/bg-pattern-desktop.svg);
background-position: -76px, -571px -248px;
background-size: 472px, 966px;
background-repeat: no-repeat;
Hope this helps!
Happy coding!