:^
here the instructions :
'In style.css, add the background-image property to the .btn selector.
Set it equal to a linear gradient, as shown in the example above. The gradient should start at #FFD194 and ends at #BC1324 "
.btn {
background-color: #14213D;
background-image: -webkit-linear-gradient(#FFD194, #BC1324);
color: #FFF;
font-family: 'Amatic SC', cursive;
font-size: 26px;
padding: 14px;
}
what’s my sins?