Learn CSS Transforms by Building a Penguin - Step 75

Tell us what’s happening:

Step 75
In some browsers, the heart emoji may look slightly different from the previous step. This is because some of the character’s properties were overridden by the font-weight style of bold.

Fix this, by targeting the div with the heart emoji, and setting its font-weight to its original value.

I do not understand this step.

Even though I wrote this code, it does not get through.

.shirt {
font: bold 25px Helvetica, sans-serif; /* Keep the bold style for the .shirt div */
}

.shirt .hear

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

.shirt {
  font: bold 25px Helvetica, sans-serif;
}

.heart {
  font-weight: normal;
}

Can you kindly explain how I can fix this issue?

Thanks

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Learn CSS Transforms by Building a Penguin - Step 75

I don’t see a div with this id. You need to target the div with a valid selector. Do you remember how to select the child of an element?