Jak zmienić kolor elementu podczas unoszenia się nad 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