背景画像の上にロゴを載せる場合などに使える
(SCSS使用の場合)
&::after {
content: '';
background-image: url('../img/background-img/logo-white.png');
background-size: contain;
background-position: center;
height: 50%;
width: 50%;
position: absolute;
top: 25%;
left: 25%;
}