Hello,
There is a background-color{ color:silver; } in your style that serves no purpose, you aren’t tasked with adding it though it makes no difference for the test, it’s just not needed there so it shouldn’t exist.
Now on to the issue, other than what I mentioned before, your code is correct but you forgot to add something in the class you created when assigned to the style element. Everything needs to be closed.
.red-text {
color: red;
}
h2 {
font-family: Lobster, monospace;
}
p {
font-size: 16px;
font-family: monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
/* A class named silver-background should be defined within the style element and the value of silver should be assigned to the background-color property. */
.silver-background {
background-color: silver;
}
/* No not this:- */
/* div {
background-color: silver;
} */