:root {
    --color1: white;

}

* {
    box-sizing: border-box;
}

body table {
    width: 90%;
    text-align: left;
    background-color: rgba(127, 255, 212, 0.856);
    border-collapse: collapse;
    border: 1px solid black;
}

body table thead tr{
    width: 90%;
    background-color: blue;
    color: white;
}

td{
    padding-right: 20px;
}

body table tbody tr{
    background-color: white;
    color: black;
}

body table tbody tr:nth-child(even){
    background-color: aquamarine;
}

body table tbody tr:hover{
    background-color: blue;
    color: white;
}

tfoot{
    border: 1px solid black;
    text-align: right;
}

tfoot a{
    padding: 10px;
}