In the following Question we are suppose to customize the hover state of the boxes to change its background color to any color of your choice
Question:
However, doing so it will fail the test:
I needed to change my code from
.box:hover {
background-color: aqua;
}
to
.box:hover {
background-color: skyblue;
}
Only then is the test passing.
So why not just mention in the task to use the skyBlue color instead of color of your choice

