/* CSS Document */
body {

font-family: Times New Roman, Arial, Helvetica, sans-serif;
/* em jsou relativný jednotky, 1em je normńlný velikost. 0.8em je 80% normńlný velikosti */
font-size: .8em;
/* color je barva textu */
color: #666;
background-color: #fff;
/* margin je okraj, tady je auto kvšli tomu, aby se to vystĽedilo */
margin-left: auto;
margin-right: auto;
}

a {
color: black;
text-decoration: none;
}

a:hover {
color: white;
text-decoration: underline;
}

a:visited {
color: violet;
text-decoration: none;
}

table {
border: solid 0px black;
}

a.navigace {
color: blue;
}

a:hover.navigace {
color: red;
text-decoration: underline;
}