Is there a way to retain the curve at the bottom of an image even after setting its background size to 50vh? The current issue is that the curve gets cropped out when the height is set, resulting in a loss of the desired effect.
https://i.sstatic.net/r45nE.png
.background{
background-image: url("https://i.sstatic.net/r45nE.png");
background-repeat: no-repeat;
height: 50vh;
/*height: 916px;*/ <!--this is the height of the image-->
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<header>
<div class="container-fluid d-flex justify-content-center background">
</div>
</header>