/* toto je můj style sheet !!! */

body {
    font-family: Arial, Helvetica, sans-serif;
    color:beige;
    background-color: black;
    margin: 0px;
}

p {
    width: 90%;
    margin-left: 20px;
    margin-right: 20px;
    text-align:justify;
}

#druhy {
    color:aquamarine;
}

p.velke {
    font-size: 30pt;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    color:chocolate;
    background-color: greenyellow;
    text-decoration: underline;
}

.obrazkovy {
    background-color: black;
    text-decoration: none;
}
.obrazkovy:hover {
    background-color: black;
    text-decoration: none;
    cursor:crosshair;
}

.nastred {
    width: 100%;
    text-align: center;
}