/* Table settings */


td {
    text-align: center;
    font-weight: bold;
}

td:nth-child(1) {
    color: orangered;
    transition: 0.3s;
}

td:nth-child(2) {
    color: red;
    transition: 0.3s;
}

td:nth-child(3) {
    color: yellow;
    transition: 0.3s;
}

td:nth-child(4) {
    color: dodgerblue;
    transition: 0.3s;
}

td:nth-child(5) {
    color: mediumpurple;
    transition: 0.3s;
}

td:nth-child(6) {
    color: limegreen;
    transition: 0.3s;
}

td:nth-child(7) {
    color: blue;
    transition: 0.3s;
}

td:hover {
    color: white;
    transition: 0.3s;
}