Describe your issue
CSS code is correct as per the given instructions but CodeChef fails to accept it upon submission. Please fix it so I can proceed with this part of the course.
Course URL: Task - Style an Interactive Landing Page in CSS
CSS Course, 5th course Pesudo-classes
Screenshot
/* Part 2: Your Task - Add Interactive Effects */
.call-to-action:hover{
background-color: darkslateblue;
}
.call-to-action:active{
background-color: rgb(26, 41, 0);
}
.email-input:focus{
border: 2px solid;
border-color: rgb(0, 255, 64);
outline:none
}
.main-nav a:hover{
text-decoration: underline;
}
Additional info
CodeChef is not accepting it’s own solution.
