table{
    width: 700px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 25px;
    border-collapse: collapse;
} 

td{
    border: 5px solid darkgray;
}

td{
    text-align: center;
    color: salmon;
    font-weight: bold;
    transition: 0.5s;
}

td:hover{
    background-color: indianred;
}