﻿/* CSS Dokument */
/* PSPad help foe atribut : Ctrl + space*/
body	{
	display: grid;
	max-width: 1024px;
	grid-template-columns: auto 150px;
	grid-template-rows:150px auto 15px;
	margin: 0 auto;
	border: 1px solid red;
	}
	
header, footer	{
	font-family: Calibri, Arial, sans-serif;
	color:white;
	background: black; text-align: center;
	color: red;
	}
header, footer {
	font-family: Calibri, Arial, sans-serif;
	color: pink;
	background: black;
}
	
header {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
	border: 1px solid red;
	}
	
nav a {
	grid-column: 2 / 3;
	grid-row: 2 / span 2;
	border: 1px solid red;
	}
	
section {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	border: 1px solid red;
	}
	
footer {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	font-size: x-small;
	border: 1px solid red;
	}
	
h1, h2	{/*AltGr + B */
	font-family: Calibri, Arial, sans-serif;
	text-align: center;
	color:white;
	background: black;
	/*AltGr + N*/
	}
	
p	{
	font-family: "Time New Roman", Geogria, serif;
	font-size: x-small;
	text-align: justify;
	color: black;
	
	}
	
nav a {
	font-family: Calibri, Arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
	color: white;
	font-size: large;
	background: black;
	display: block;
	/* display: inline-block; */
	margin: 2px;
	padding: 5px 0px 5px 15px;
	border: 5px outset #EDF2E1;
	
	}
nav a:hover {
	color: white;
	background: red;
}
nav a:active {
	color: white;
	background: green;
	border: 5px inset #EDF2E1;
}	
nav a#vybran {
	color: white;
	background: gray;
}
table,th,td {
	border: 1px solid black;
	font-family: sans-serif;
}	
table {
	border-collapse: collapse;
}
tr:nth-child(odd) {
	background: #DDDDDD;
}
td {
	text-align: center;
	width: 8%;
}