Add a rule that sets background-color to coral for elements of the title class.
background-color
coral
title
Make sure to pick .title followed by { and then background-color: coral;, }.
.title
{
background-color: coral;
}