Set the background color of the h2 element to green.

<html>
<head>
  <style>
h2{
background-color: green;}
</style>
</head>
<body>
  <h1>Game Achievements</h1>
  <h2>Speed runs</h2>
</body>
</html>]]>

Make sure to pick background-color: green;.