To affect other elements when one element is hovered with CSS, we use the :hover pseudoclass.
For instancne, we write
#container:hover #cube {
background-color: yellow;
}
to select the element with ID container when we hover over it with #container:hover
.
And we select the element with ID cube inside and set its background color to yellow.