p{
    color: blue;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    background-color: darkgray;
}

table{
    width: 500px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    border-collapse: collapse;
    margin-bottom: 30px;
}

td,th{border: 3px solid darkgrey}

td{
    text-align: center;
    color: blue;
    font-weight: bold;
    transition: 0.5s;
}
th{
    background-color: aquamarine;
}
tbody td:hover{
    background-color: cadetblue;
}

td.offset{
    color: blueviolet;
    opacity: 0.5;
}

table#second_table{
    width: 200px;
}

img{
    width:500px;
    height: 400px;
}
