Build a Confidential Email Page - Build a Confidential Email Page

Tell us what’s happening:

Task 17 and Task 18 are the problem and i am unable to figure out in the code tried everything .

    1. Your #confidential element’s text should be CONFIDENTIAL. You have either omitted the text, or have a typo.

*18. Your #top-secret element’s text should be TOP SECRET. You have either omitted the text, or have a typo.

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">
  <title>Confidential Email</title>
<link rel="stylesheet" href="styles.css">
</head>

<body>
  <main id="email">
    <div id="confidential">
  IFNOCIALTNED
    </div>

    <div id="top-secret">
OPT CESRET
    </div>
    <p>Agent assigned: <span class="blurred">X-47</span>.</p>
  <p>Meeting point: <span class="blurred">Zone Delta</span>.</p>
  <p>Access code: <span class="blurred">#X9Z!2</span>.</p>

       </main>

</body>

</html>
/* file: styles.css */
#email{
  padding:50px;
  margin-top:50px;
  width:500px;
  border:2px;
  box-sizing:border-box;
}
#confidential , #top-secret{
  display:inline-block;
  padding:6px;
  margin-left:5px;
  border:2px solid black;
   transform: rotate(-5deg)
}
#top-secret{
    border-color: blue;
  transform: rotate(5deg);
}
.blurred{
  filter:blur(3px);
}

Your browser information:

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

Challenge Information:

Build a Confidential Email Page - Build a Confidential Email Page

this does not look like “CONFIDENTIAL”

THANKS I THOUGHT WE HAD TO ENCRYPT CONFIDENTIAL AND TOP SECRET