xxxxxxxxxx
/*To match to any sibling element after the selector on the left,
use the tilde symbol '~'. This is called the general sibling combinator. */
h1 ~ p {
color: black;
}
xxxxxxxxxx
/* Paragraphs that come immediately after any image */
img + p {
font-weight: bold;
}