I do not know what am getting wrong
Step 54
To make the input
and textarea
elements blend in with the background theme, set their background-color
to #0a0a23
. Then, give them a 1px
, solid
border with a color of #0a0a23
.
my code:
input, textarea {
background-color: #0a0a23;
border: 1px, solid, #0a0a23;
}