settings
code:style.css
.container {
position: relative;
padding-top: 130px; /* 画像の高さ分のスペースを確保 */
}
.container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px; /* 画像の高さ */
top:30px;
background-image: url('https://scrapbox.io/files/670a5162cf2621001dc220d7.png');
background-size: contain; /* 画像の大きさをコンテナに合わせる */
background-position: center;
background-repeat: no-repeat;
}