/* Emerson Mazzoni, styling HTML table */

body {
    margin-top: 50px;
    background-color: dimgrey
    }

table {
    margin-left: auto;
    margin-right: auto;
}

#Info th{
    background-color: forestgreen;
    text-align: center;
    color: white;
}

#Info td, #Info th {
    border: 1px solid #d0d0d0;
    padding: 14px
}

#Info tr:nth-child(even) {
    background-color: darkturquoise;
}

#Info tr:nth-child(odd) {
    background-color: beige
}


.center {
    text-align: center;
}

#Info tr:hover {
    background-color: crimson
}

.total {
    background-color: bisque;
    font-size: 24px;
    text-align: center;
    color: blue
}

.total:hover {
    background-color: azure
}