
p{
    color: blue;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    background-color: tomato;
}

table{
    width: 700px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
    border-collapse: collapse;
}

td, th{
    border: 3px solid darkgray;
}

td{
    text-align: center;
    color: blue;
    font-weight: bold;
    transition: 0.5s;
}

th{
    background-color: aqua;
}

tbody td:hover{
    background-color: lightgreen;
}

td.offset{
    color: grey;
    opacity: 0.5;
}

table#second_table{
    width: 200px;
}