I have something like this:
<main id="parent" class="h-screen flex justify-center items-center">
<div id="child" class="bg-red-200 w-96 h-72 flex">
</div>
</main>
How would I go about applying .bg-blue-100 to the #parent only when hovering over #child?
(I understand that the opposite could be achieved using group on the parent, and group-hover on the child.)