body{
    background-image: url(bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0px 10px 5px;
    p{
        color: red;
        font-family: Arial;
        font-size: medium;
        background-color: green;
        border-color: green;
        border-style: dotted;
        border-width: 10px;
        /* font-family: 'Courier New';
        font-style: italic;
        font-weight: 500;
        font-size: 20px; */
        /* font: italic 500 20px "Courier New" */
    }
    h1{
        text-decoration: overline;
        word-spacing: 10px;
        text-align: center;
        color: green;
    }
    div{
        color: white;
        font-family: Verdana;
        font-size: 18px;
        background-color: grey;
        border-style: double;
        border-color: black;
        word-spacing: 20px;
        margin: 10px;
        cursor: crosshair;
        /* border-style: dotted;
        border-color: red;
        border-width: medium;
        height: 95%;
        width: 80%; */
        /* border:medium dotted red */
    }
    a:link, a:visited{
        color: black;
        text-decoration: none;
        background-color: grey;
        border-style: solid;
    }
    a:active, a:hover{
        color: silver;
        text-decoration: none;
        background-color: black;
        border-style: dashed;
    }
    ol{
        list-style-image: url(gwiazdka.gif);
    }
    table, tr, td{
        cursor: crosshair;
    }
}