table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 5px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    border: 2px solid black;
    border-radius: 8px;;
}
th{
    background-color: rgb(0, 255, 255);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-top: 12px;
    height: 50px;
    border: 2px solid black;
    border-radius: 3px;
}
td{
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: left;
    vertical-align: middle;
    border: 2px solid black;
}
td:nth-child(odd){
    background-color: #fff;
}
td:nth-child(even){
    background-color: crimson;
}
th,td:hover{
    background-color: cadetblue;
    cursor: pointer;
}
caption{
    font-size: 20px;
    font-weight: bold;
    caption-side: top;
    margin: 10px;
}
th,td:first-child{
    background-color: blue;
    color: white;
    text-align: center;
}
th,td:last-child{
    font-style: italic;
}