﻿table {
    border-collapse: collapse;
    border: 0;
    text-align: center;
}
thead tr {
    text-align: center;
    color: black;
    background-color: lightcoral;
    font-weight: bold;
}
tbody tr:nth-child(even) {
    color: black;
    background-color: plum;
}

tbody tr:nth-child(odd) {
    color: black;
    background-color: lightpink;
}

td, th {
    border: 2px solid black;
    padding: 5px;
}