body{
    background-color: bisque;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
tr{
    background-color: chocolate;
    color: bisque;
    font-size: x-large;
    border: solid black 1px;
}
th{
    background-color: brown;
    color: greenyellow;
    font-size: xx-large;
    border: solid black 1px;

}
table{
    border-collapse: separate;
    border: solid black;
    margin: auto;
    background-color: goldenrod;
    width: 100%;
    text-align: center;
}
td{
    border: solid black 1px;
}
tr:hover{
    background-color: mediumaquamarine;
    color: gray;
}

td:hover{
    background-color: aquamarine;
    color: black;
}
