cara mengubah warna elemen saat melayang di atas div
/*
to change the color of an element inside a div,
specify what element you want to change
when hovering over the div like this:
*/
.div:hover .element{
color: red;
}
Perspective