
/* CSS Document; CTRL + space help for atribute if CSS down*/

body   {
        display: grid;
        grid-template-columns: auto 200px;
        grid-template-rows: 300px auto 50px;
       }

header  {
         grid-column: 1/3;
         grid-row: 1/2;
        }
        
nav  {
         grid-column: 2/3;
         grid-row: 2/4;
        }

        
section  {
         grid-column: 1/2;
         grid-row: 2/3;
        }
        
footer  {
         grid-column: 1/2;
         grid-row: 3/4;
        }

nav a {
        display: block;
      }

  header, footer {
    color: white;
    background: black;
    }

h1, h2 {
    font-family: Calibri, Arial, sans-serif;
    text-align: center;
    color: white;
    background: black;
    
    }
    
p   {
     font-family: Times New Roman, Georgia, serif;
     font-size: smaller;
     text-align: justify;
     
     }

table,th,td {
    border: 1px solid black;
    font-family: sans-serif;
            }
            
table {
    border-collapse: collapse;
      }
      
th,tr:nth-child(odd) {
    background-color: #DDDDDD;
                     }
                     
td {
    text-align: center;
    width: 8%;
   }
   
#Nadpis {color: #FFFF00;
         font-weight: bolder;
        }
        
#Podnadpis {color: orange;
         font-weight: bold;
        }
