body{
    background-color: bisque;
    color: red;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: medium;
}

ol{
    list-style-type: disc;
}

a:link{
    color: white;
}

a:visited{
    color: blue;
}

a:hover{
    color:greenyellow;
}

a:active{
    color:indigo;
}

table, th, td{
    border: 1px solid black;
    text-align: left;
}

th, td{
    margin: 10px;
    padding: 10px;
    border: 1px solid black;

}

tr:nth-child(odd){
    background-color: lightcoral;
}
