body {
	background-color: #202020;
	margin: 0px;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

audio {
	margin-top: -100px;
	float: right;
	border-radius: 20px;
	border: 3px solid #485b3b;
}

a:link {
	color: black;
	text-decoration: none;
}

a:visited {
	color: black;
	text-decoration: none;
}

a:hover {
	color: #485b3b;
	text-decoration: underline;
}

a:active {
	color: black;
	text-decoration: none;
}

header {
	font-family: "Lobster", sans-serif;
	font-weight: 400;
	font-style: normal;
	width: 100%;
	height: 50px;
	background-color: #485b3b;
	font-size: 36px;
	color: white;
	text-align: center;
	text-transform: uppercase;
	padding: 5px 0px 5px 0px;
	letter-spacing: 3px;
	border-bottom: 2px solid #33402a;
	text-shadow: 2px 2px 5px black;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: white;
	max-width: 1000px;
	padding: 10px;
}

#spis {
	margin-left: auto;
	margin-right: auto;

}

ol {
	margin-top: 5px;
}

ol>li {
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 5px;
	letter-spacing: 3px;
	border-bottom: 2px solid #485b3b;
}

ol>li>ul {
	font-size: 18px;
	text-transform: none;
	font-weight: 400;
	padding: 0px;
	letter-spacing: 0px;
	margin-top: 5px;
	margin-left: 30px;
}

ol>li>ul>li {
	margin: 0px;
}



.slajd {
	padding: 20px 40px;
}

h1 {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
}

h2 {
	border-top: 2px dashed #485b3b;
	border-bottom: 2px dashed #485b3b;
	font-size: 40px;
	text-transform: uppercase;
	text-align: center;
	color: #485b3b;
}

h3 {
	font-size: 20px;
	text-transform: uppercase;

	color: #485b3b;
}

.scrollup {
	width: 64px;
	height: 64px;
	text-decoration: none;
	background: url("up.png") no-repeat 0px 0px;
	position: fixed;
	right: 50px;
	bottom: 50px;
	display: none;
}

footer {
	width: 100%;
	height: 32px;
	background-color: #485b3b;
	font-size: 20px;
	color: white;
	text-align: center;
	text-transform: uppercase;
	padding: 5px 0px 5px 0px;
	letter-spacing: 3px;
	border-top: 2px solid #33402a;
	text-shadow:
		2px 2px 0 #33402a,
		-2px 2px 0 #33402a,
		-2px -2px 0 #33402a,
		2px -2px 0 #33402a;
}

@media screen and (max-width: 1220px) {
	#spis {
		width: 50%;
		margin-left: auto;
		margin-right: auto;
		font-size: 40px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slajd {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	ol {
		display: flex;
		flex-direction: column;
		align-items: center;
		align-self: center;
	}

	audio {
		margin-bottom: 30px;
		margin-top: 0px;
		float: none;
	}

	ol>li>ul>li {
		margin-bottom: 10px;
	}

}