@charset "utf-8";
/* Komórka */

@font-face {
	font-family: FanWoodText;
	src: url(../fnt/fanwood-webfont.woff);
}
html {
	width: 100%;
	font-family: "FanWoodText", serif;
	background: white;
}
body {
	width: 100%;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3em;
	background: white;
	z-index: 2;
}
header div#logo {
	margin: .5em 1em;	
}
header div#logo a {
	display: inline-block;
	height: 2em;
}
header div#logo a img {
	display: block;
	height: 100%;
}
header h1 {
	display: inline-block;
	padding-left: .2em;
	vertical-align: .2em;
}
header nav a {
	display: none;
}
header nav a#powrot {
	position: fixed;
	top: .5em;
	right: .5em;
	display: block;
	height: 2em;
}
header a#powrot img {
	height: 100%;
}
header a:hover#powrot {
	transform: rotate (0);
	transform: translateX(-5px);
}
article {
	width: 100%;
	margin-top: 10%;
	line-height: 1.2;
	z-index: 1;
}
article nav {
	width: 100%;
	margin: auto;
}
article nav a {
	position: relative;
	display: block;
	width: 50%;
	float: left;
	outline: 1px solid white;
}
article nav a img {
	display: block;
	width: 100%;
}
article nav a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4vw;
	text-align: center;
	text-transform: uppercase;
	color: white;
}
section {
	width: 90%;
	padding: 2em 5% 4em;
	font-size: 120%;
	line-height: 1.5;
	background: silver;
}
section h1 {
	font-size: 150%;
	margin: .5em 0 .5em;
}
section p {
	margin-bottom: 1em;
}
section ol {
	padding-left: 2em;
}
section li {
	list-style-type: upper-roman;
	margin-bottom: .5em;
}
section p a {
	color: red;
}