body{
    font-family: Georgia;/*fondi tüüp*/
    color: blue; /*teksti värv*/
}
h1{
    border: dotted 1px blue; /*dashed, outline, double, soolid, ääris*/
    padding: 5%; /*vahe tekstist ääriseni*/
    margin: 5px;
    border-radius: 40px;
    width: 40%; /*laius*/
    background-color: lavender; /*tausta värv*/
}
ul{
    list-style-type: circle; /*markeri tüüp - square; */
    padding: 5px;
    width: 40%;
    background-color: lavender;
}
ul li{
    background-color: lavender;
    margin: 5px;
}
li{
    float: left;
    display: block;
    text-align: center;
    padding: 10px;
}
footer{
    text-align: center;
   /* margin-top: 20%;*/
    background-color: lavender;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
table, td{
    width: 140%;
    border: solid 1px pink;
    border-collapse: collapse; /*ühine ääris*/
    background-color: lavender;
}