When I hover over the button, the div does not change the color of the book div. I can't understand it.
.book {
height: 100px;
width: 100px;
background-color: blue;
}
.button {
height: 40px;
width: 100px;
background-color: black;
color: white;
}
.button:hover .book {
background-color: pink;
}
<div class="book">
BOOK
</div>
<div class="button">
BUTTON
</div>