画像
背景画像 ※imgは別
background: url(../images/background/background-4.jpg);
background-size: cover;
background-position: left center;
background-repeat: no-repeat;
img画像
object-fit: cover;
アスペクト比を固定する簡単な方法(1行書くだけで画像の縦横比を指定)
img {
width: 500px;
aspect-ratio: 3/2;
}