Store Data with Sass Variables what is the problem with this

Tell us what’s happening:

Your code so far


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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:62.0) Gecko/20100101 Firefox/62.0.

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

I coded correctly but only two user stories passed.

$text-color:red;
.header{
text-align: center;
}
.blog-post, h2 {
color: $text-color;
}

But I have passed only two user stories.

I copied and pasted your exact code and it passes for me. You may need to refresh the page and run the tests again or try a different browser. Sometimes, these html and css challenge are kind of buggy.

Thanks so much I have passed the challenge in the new browser in firefox.