Tasks
In the styles.css file, create a style rule for the table element that:
sets the width to 80%,
sets the top and bottom margins to 0,
sets the left and right margins to auto,
and sets a border with the values 3px solid #71881b.
Create a style rule for table, tr, th, and td selectors that collapses the border and sets the padding to 2%.
Create a style rule for the caption element that sets the font-size to 2em, padding to 2%, and margin-top to 2%.
Create a style rule for th and td selectors that sets a border with the values 1px solid #7188bb.
Create a style rule for td that center-aligns its text.
Create a style rule for tr that sets the background color to #d3e788 for odd rows.
The table contains the correct content and is styled correctly.
Add a comment above each style rule to note its purpose.\