<!-- eg) 픽토그램 - 신호등, 횡단보드 -->
<div class="group flex h-[250px] w-full flex-row items-center justify-between bg-black">
<div class="flex flex-row gap-4 group-hover:bg-pink-300">
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
</div>
<div class="flex flex-row items-center justify-center gap-3">
<div class="h-40 w-40 rounded-full border-2 border-white bg-red-400 transition hover:bg-red-200"></div>
<div class="h-40 w-40 rounded-full border-2 border-white bg-yellow-400 transition hover:bg-yellow-200"></div>
<div class="h-40 w-40 rounded-full border-2 border-white bg-green-400 transition hover:bg-green-200"></div>
</div>
<div class="flex flex-row gap-4 group-hover:bg-yellow-300">
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
<div class="h-[150px] w-4 bg-white"></div>
</div>
</div>