Missing word in directions

Tell us what’s happening:
I have noticed as I work through the exercises that they are carefully worded and grammatically correct, GREAT JOB and it is very much appreciated!

I read the sentence below and it is missing a word so I thought I would bring it to your attention. Nothing major, but I wanted to bring this to your attention.

In exercise, Attach a Fallback value to CSS Variable, the following sentence appears to be missing a word(s) between ‘looks’ and ‘there’. You could insert ‘like’ or “as though”.
“It looks there is a problem with the variables supplied to the .penguin-top and .penguin-bottom classes.”

I think you all do an amazing job and this sentence did not seem to fit in with everything else that you have created.

Your code so far


<style>
  .injected-text {
    margin-bottom: -25px;
    text-align: center;
  }

  .box {
    border-style: solid;
    border-color: black;
    border-width: 5px;
    text-align: center;
  }

  .yellow-box {
    background-color: yellow;
    padding: 10px;
  }
  
  .red-box {
    background-color: crimson;
    color: #fff;
    padding: 20px;
    margin: 20px;
  }

  .blue-box {
    background-color: blue;
    color: #fff;
    padding: 20px;
    margin: 20px;
  }
</style>
<h5 class="injected-text">margin</h5>

<div class="box yellow-box">
  <h5 class="box red-box">padding</h5>
  <h5 class="box blue-box">padding</h5>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.1 Safari/605.1.15.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/adjust-the-margin-of-an-element

Thanks for making FCC better by pointing this out. It looks like another camper has spotted the issue and made a fix, so the error should be gone when FCC next rolls out an incrimental update.