body {
    
    background-color: lightblue;
    background-size:300px;
    background-repeat:repeat;
    background-attachment:fixed;
    background-position: top;
}




.tablica{
    border-collapse: collapse;
    margin: 20px;
    font-size: 15px;
    min-width: 400px;
    width: 95%;
    border-spacing: 5px;
    margin-left: auto;
    margin-right: auto;
}
 
.tablica thead tr{
    background-color: aquamarine;
    color: azure;
    text-align: left;
}
 
.tablica tbody tr{
    background-color: gray;
    color: black;
    border-bottom: solid 2px white;
}
 
.tablica td , 
.tablica th {
    padding: 15px;
}
 
.tablica tbody tr:nth-child(even){
    background-color: darkgray;
}
 
.tablica tbody tr:last-of-type{
    border-bottom: solid 3px antiquewhite;
}
 
.tablica tbody tr:hover{
    background-color: aqua;
}
.tablica td:hover , 
.tablica th:hover {
    background-color: red;
}
 
/*radus tablice*/
 
/*.tablica th:first-child {
    border-top-left-radius: 10px;
    border-radius: 40px 40px 0 0;
}*/