Buen día Compañero German, yo también tenia el mismo inconveniente del encabezado, revise nuevamente el video y me di cuenta que en thead no va td sino th, al corregirlo, el encabezado te quedará centrado.
A continuación te comparto mi código. Espero que te ayude. Éxitos!
<table>
<thead>
<tr>
<th>Día</th>
<th>Horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08h ~ 20h</td>
</tr>
<tr>
<td>Miercoles</td>
<td>08h ~ 20h</td>
</tr>
<tr>
<td>Viernes</td>
<td>08h ~ 20h</td>
</tr>
</tbody>
</table>