You'll see in the CSS that I'm limiting the width/height to 80%. But even if we change that to 100% it won't fill the screen at all sizes because of the aspect ratio of the image. You could set the SVG preserveAspectRatio="none", but that would distort the image and look pretty funky.   Another option would be to center the SVG and crop the edges depending on screen size. Just use a little JS to make your calculations.   Another option would be to use CSS masks, but they give
    • Like
    5