Help Using Abbreviated Hex Code

I don’t understand why the colour of the text isn’t changing and I can’t pass the challenge. Code seems right to me

Your code so far

<style>
  .red-text {
   Color: #F00;
 } 
 
   
  .fuchsia-text {
   color: #F0F;
  } 
  
  .cyan-text {
    color: #0FF;
  }
  .green-text {
    color: #0F0;
  }
</style>

<h1 class="red-text">I am red!</h1>

<h1 class="fuchsia-text">I am fuchsia!</h1>

<h1 class="cyan-text">I am cyan!</h1>

<h1 class="green-text">I am green!</h1>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.111 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/use-abbreviated-hex-code

Try hitting the reset button, then try again.

Thanks, I already did but it didn’t make a difference. Is the code right? Could it be because I’m using an android os?

The only odd part I can see from your code is the first Color property. Property names are lowercase by convention, so it’s more common to type it as color.

Can you specify which tests aren’t passing? Do you have other browsers you can use?