table {
    width: 100%;
    font-size: small;
    color: black;
    caption-side: bottom;
    
}

body {
    border-right: solid black 1px;
    border-left: solid black 1px;
}
table, td, th {
    padding: 15px;
    border-spacing: 12px;
    border: solid 1px;
    border-collapse: collapse;
    max-width: 100%;
}

thead {
    border-top: double 4px;
    border-bottom: double 4px;
    margin-top: 100px;
}

th {
    background-color: #106a6a;
    color: #eee;
}
tr:nth-child(2n) {
   background-color:#106a6a;
}
tr:hover  {
    background-color: whitesmoke;
}


tfoot {
    background-color:#106a6a;
   
}

@media screen and (min-width: 768px) {
    table {
        font-size: medium;
    }
}