Испытание: итоговая таблица [23/23] 96% помогите

не получается на 100 %
`

Испытание: итоговая таблица

Итоговая таблица

Город Посещений %
СПб 199 65.12
Москва 69 21.3
Киев 5 8
Посещений за весь период 273
` body { width: 350px; margin: 0; padding: 0 10px; font-size: 14px; font-family: Arial, sans-serif; } table { border-collapse: collapse; width: 100%;

}
tr {
padding:10px;
border-bottom: 1px solid lightgray;
}
td
{
width: 33%;
padding: 10px;
}
.top {
text-align: center;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.row1 {
text-align: left;
border-top: 1px solid black;
border-bottom: 1px solid black;
color: white;
background-color: darkcyan;
padding: 10px;
}
.row2 {
text-align: center;
border-top: 1px solid black;
border-bottom: 1px solid black;
color: white;
background-color: lightblue;
padding: 10px;
}
.row3 {
text-align: right;
border-top: 1px solid black;
border-bottom: 1px solid black;
color: white;
background-color: darkcyan;
padding: 10px;
}
https://htmlacademy.ru/upload/files/task_270/dif_db76d80f9a3c743184134bb38681e396.png?0.14721376403431785

Выделенные строки должны быть светло-желтого цвета.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Испытание: итоговая таблица</title>
    </head>
    <body>
        <h1>Итоговая таблица</h1>
<table>
        <tr>
            <th>Город</th>     
            <th>Посещений</th>     
            <th>%</th>
        </tr>
        <tr>
            <td>СПб</td>
            <td>199</td>
            <td>65.12</td>
        </tr>
        <tr>
            <td>Москва</td>
            <td>69</td>
            <td>21.3</td>
        </tr>
        <tr>
            <td>Киев</td>
            <td>5</td>
            <td>8</td>
        </tr>
        <tr>
            <td colspan="2">Посещений за весь период</td>
            <td>273</td>
        </tr>
    </table>
    </body>
</html>


body {
    width: 350px;
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}
table {
    border-collapse: collapse;
    
}
th {
    background-color: darkcyan;
    color: white;
    padding: 10px;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}
tr {
    border-bottom: 1px solid lightgray;
}
td {
    width: 33%;
    padding: 10px;
}
tr>td:nth-child(2){
    text-align:center;
}
tr>td:nth-child(3), th:last-child, tr:last-child td:nth-child(2){
    text-align:right;
}
tr:nth-child(odd){
    background-color: lightyellow;
}
tr th:first-child +th {
    background-color:lightblue;
}
th:first-child {
    text-align:left;
}

Попробуй так

Вот код на 100% http://codepen.io/anon/pen/ENxgdN сравни с своим и найди ошибки.