Help me in solving HTMLPR10 problem

My issue

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;
}

/* Solution as follows */

table {
border-collapse: collapse;
width: 100%;
}

th, td {
padding: 10px;
text-align: left;
border: 1px solid #000000;
}

tr:hover {
background-color: #f5f5f5;
} it is correct but it is showing that did you remove the inline styling for the table from index.html what is the issue kindly fix the issue ASAP

My code

// your code goes here

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