/*Customize Content creator hero image by ID*/
#content-creator{
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.5)
    ),
    url("../img/content-creators-hero-desktop.png");
  }

  .gridContainerTitle {
    font-weight: 800;
  }

  /*Responsive for Mobile**********************************************************************************/
@media only screen and (max-width: 460px) {

  #content-creator{
    background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.3)
    ),
    url("../img/content-creators-hero-mobile.png");
  }

}

  
 
  
