Hi Emily,
To make the block slightly transparent when hover over and to change just the text over it to white you have to add custom CSS go to Appearance > Customize > Additional CSS and paste the below CSS code then click on Save button.
.post-main .has-post-thumbnail .entry-wrap:hover .entry-main {
opacity: 0.8;
-moz-opacity: 0.8;
}
.post-main .post .entry-main .entry-title a,
.post-main .post .entry-main p {
color: #fff;
}
Thank you!