Basic CSS Lobster Font and H2 Selector

I have created an H2 Selector and my font has changed but I can not pass the challenge. I am still seeing a red X on using an h2 selector to change the font.

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  .red-text {
    color: red;
  }
 
  p {
    font-size: 16px;
    font-family: monospace;
  }
  h2 {
    font-family : Lobster;
  }
</style>

<h2 class="red-text">CatPhotoApp</h2>
1 Like

It might be because you have a space between font-family and :, could you post a link to the challenge so that we can try it out?