/* ------RESET CSS -------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*-------------------------------------*/



body{

	background-color: lightgray;
}
/*================================================================================================================*/
#strona{
	width: 920px;
	min-height: 300px;							/* mimimalna wysokość */
	background-color: gray;
	margin-left: auto;
	margin-right: auto;

}
/*====================================================================================================================*/
#naglowek{
	width: 100%;
	height: 200px;
	background-color: green;
	background-image: url('grafika_do_naglowka.jpg');
	font-size: 72px;
	line-height: 200px;							/* wysokość linni ustawienie napisu w pionie na srodku elementu */
	font-family: sans-serif;
	text-align: center;
	color: white;
	text-shadow: 6px 4px 4px rgba(0, 0, 0, 1);		/* cienie i rozmycie */

}
/*===============================================================================================================================*/
#menu{
	width: 100%;
	min-height: 50px;
	background-color: yellow;
}

#menu ul{
	
}

#menu ul li{									/* wygląd nenu */
	display: inline-block;
	background-color: orange;
	width: 20%;
	line-height:50px;
	font-family: sans-serif;
	color: white;
	text-align: center;

}
#menu ul li:hover{								/* pseudo klasa zmiana koloru po najechaniu myszką */
	background-color: navy;
	color: orange;



}
#menu ul li a{									/* wygląd odsyłaczy */
	text-decoration: none;
	font-family: sans-serif;
	font-size: 20px;
	color: white;
}
/*=======================================================================================================================*/

#tresc{
	width: 100%;
	min-height: 600px;
	background-color: teal;

}

.filmy{
	text-align: center; 
	padding-top: 20px;

}

.przepisy{
	font-family: sans-serif;
	color: white;
	padding-left: 30px;
	padding-bottom: 30px;
	font-size: 20px;
}

img{
	margin-left: 5px;
	border: ridge 2px orange;
	margin-top: 20px;
	float: left;
	box-shadow: inset 0px 0px 50px 0px #000000,10px -8px 34px 1px #050505;
	
}

h1{
	font-size: 36px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

p{
	padding-bottom: 20px;
}


.listy{
	width: 50%;
	margin-left: 400px;

}

ul{
	list-style-type: disc;
}
/*============================================================================================================================*/
#stopka{
	width: 100%;
	min-height: 150px;
	background-color: black;
	color: white;
	line-height: 150px;
	text-align: center;
	font-family: sans-serif;
}