@timavidonSubmitted about 1 year ago
I'm open to feedback.
thanks,
I'm open to feedback.
thanks,
For the background image something like this is viable (for desktop view)
body {
background-color: hsl(225, 100%, 94%);
background-image: url(images/pattern-background-desktop.svg);
background-repeat: no-repeat;
background-size: contain;
}
As for the responsiveness of the design, using a max width on the card container will keep it from stretching and deforming, since you used responsive width on the card component itself, it won't go over the max width you set but will still center on desktop view.
I'd also suggest changing the height and width to vh instead of rem units as rem is based of font size and not viewport size.