Design a Set of Colored Boxes - Design a Set of Colored Boxes

Tell us what’s happening:

task number 1, 5 and 10 doesn’t check and i couldnt understand why can you tell me?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Colored Boxes</title>
</head>
<body>
<div class="color-grid">
    <div class="color-box color1">

    </div>
    <div class="color-box color2">

    </div>
    <div class="color-box color3">

    </div>
    <div class="color-box color4">

    </div>
    <div class="color-box color5">

    </div>
</div>
</body>
</html>
/* file: styles.css */
body {
  background-color: #f4f4f4;
}

.color-box {
  width: 90px;
  height: 90px;
}

.color1 {
  background-color: #233D22;
}

.color2 {
  background-color: rgb(55, 22, 55);
}

.color3 {
  background-color: blue;
}

.color4 {
  background-color: hsl(133, 66%, 77%);
}

.color5 {
  background-color: red;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Design a Set of Colored Boxes - Design a Set of Colored Boxes

Focus on test 1 first.

What does it say?

Which line of code implements this?