Help me in solving HTMLPR10 problem

My issue

whats the fault in my code

My code

// your code goes here
header {
    background-color: #333;
    color: white;
    padding: 10px;
}

body {
    font-family: Avenir, sans-serif;
    margin: 0;
    padding: 0;
}

main {
    max-width: 800px;
    margin: 0;
    padding: 20px;
}

img {
    width: 100%;
    height: auto;
} 

/* Add the styling for the table below this line */
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #000000;
}
tr:hover {
    background-color: #f5f5f5;
}

Learning course: Learn HTML / CSS
Problem Link: Project - Style Tables in HTML / CSS

your code is perfect just you have to go to HTML file and remove the styling added in the table tag and it will work fine