table {
    width: 100%;
    background: linear-gradient(to right, #6E0000, antiquewhite);
    border: 4px solid black;
    border-collapse: collapse;
}

table tr * {
    text-align: center;
}

table tr th {
    text-transform: uppercase;
    color: #FFE369;
    font-weight: bold;
    background: rgba(110, 0, 0, 0.4);
    border: 2px solid rgba(189, 195, 199, 0.05);
    padding: 10px;
}

table tr td:first-child {
    color: white;
    font-weight: bold;
}

table tr:nth-child(odd) td:first-child {
    background: rgba(143, 148, 251, 0.1);
}

table tr td:not(:first-child) {
    color: midnightblue;
    border: 2px solid rgba(189, 195, 199, 0.05);
    padding: 5px 50px;
    background: antiquewhite;
}

table tr:last-child td {
    font-weight: bold;
    padding: 10px;
}

table tr:last-child td a {
    color: white;
}

table tr td.red {
    color: white;
    background: darkred;
}
