Build a Confidential Email Page - Build a Confidential Email Page

Tell us what’s happening:

please, why is code 22 not passing? i have 4 span element that are working fine

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link href="styles.css" rel="stylesheet">
<title>Confidential Email</title>
</head>

<body>
<main id="email"> 
  <p>Dear Agent<span class="blurred">Hunt</span></p>

  <p>We have an emergency. The secret formula for our<span class="blurred"> Mega Marshmallow</span>has been compromised. This formula is what makes our marshmallows the fluffiest and most delicious.</p>

  <p>We suspect that<span="blurred"> Professor Puff</span>is behind this. He has taken the formula to his hidden laboratory. Your mission is to <span class="blurred">infiltrated the lab and secure the formula before it's too late.</span></p>
  
  <div id="confidential">
    CONFIDENTIAL
    </div>
    <div id="top-secret">
      TOP SECRET
    </div>
  </main>
</body>

</html>
/* file: styles.css */
#email{
  padding: 50px;
  margin-top: 50px;
  width: 500px;
  border: 2px;
  box-sizing: border-box;
}

#confidential{
display: inline-block;
padding: 5px;
margin-left: 10px;
border: 5px solid #ff0000;
transform: rotate(15deg);
}
#top-secret{
  display: inline-block;
padding: 5px;
margin-left: 10px;
border: 5px solid #ff0000;
transform: rotate(15deg)
}

.blurred{
filter: blur(3px);
}
body{
  background-color: #ffffff;
}
main{
  background-color: rgb(209, 193, 193);
}

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

Challenge Information:

Build a Confidential Email Page - Build a Confidential Email Page

  1. You should have at least three span elements with a class of blurred within your paragraphs.

Is the class added correctly on each of your span elements?

thank you for taking out time to help me with this
I took note of it after making this post and now I can’t delete it
thank you!!