Build a Confidential Email Page - Build a Confidential Email Page

Tell us what’s happening:

Looks to me like I have four paragraph elements so I’m not sure how I still haven’t completed step 19

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 href="styles.css" rel="stylesheet"/>

</head>

<body>
  <main id="email">
    <div id="confidential">
      <p>This part will be <span class="blurred">blurry</span>but this part will not</p>
      </div>
    <div id="top-secret">
      <p>This part will be <span class="blurred">blurry</span>but this part will not</p>
    </div>
    <div id="also-secret">
      <p>This part will be <span class="blurred">blurry</span>but this part will not</p>
      </div>
      <p>This part will be <span class="blurred">blurry</span>but this part will not</p>
    </main>


</body>

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

#confidential {
  display: inline-block;
  padding: 10px;
  width: 300px;
  border: solid pink;
  background-color: black;
  margin-left: 90px;
  transform: rotate(15deg)
}

#also-secret {
  display: inline-block;
  background-color: green;
  width: 300px;
  padding: 40px;
  
}

#top-secret {
  display: inline-block;
  padding: 10px;
  width: 300px;
  border: solid orange;
  background-color: purple;
  margin-left: -40px;
  transform: rotate(15deg)
}

.blurred {
  filter: blur(3px);
}

p {
  color: rgb(171, 236, 171);
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Confidential Email Page - Build a Confidential Email Page

Hi. The problem is that your p elements should be outside the div elements. They should be direct children of the email element.