Is it possible to achieve a full width background without cropping, resizing, or repeating? When using background-size: cover, part of the image gets cut off, and with background-size: contain, it repeats on the right side.
CSS:
.home-3 {
background-image: url("https://imgur.com/a/r9JRp");
background-size: contain;
background-attachment: fixed;
background-repeat: no-repeat;
height: 100%;
}