Help me in solving HTMLPR10 problem

My issue

Did you remove the inline styling for the table from index.html? what to do if this shows while submitting

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


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