Store Data with Sass Variables - did the challenge but it doesn't pass

Hey guys!
I do the challenge correctly but it doesn’t pass :frowning:
can you help me what’s the point?

my code


<style type='text/sass'>
  
  $text-color: red;
  .header{
    text-align: center;
  }
  .blog-post, h2 {
    color: $text-color;
  }
</style>

<h1 class="header">Learn Sass</h1>
<div class="blog-post">
  <h2>Some random title</h2>
  <p>This is a paragraph with some random text in it</p>
</div>
<div class="blog-post">
  <h2>Header #2</h2>
  <p>Here is some more random text.</p>
</div>
<div class="blog-post">
  <h2>Here is another header</h2>
  <p>Even more random text within a paragraph</p>
</div>

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/sass/store-data-with-sass-variables/

You can check this link: GitHub - FCC issues (@sass)

1 Like