body {
  margin: 0;
  background-color: #111111;
  color: white;
  font-family: sans-serif, arial;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
}




header {
	background-color: #660000;
	color: white;
	position: sticky;
	top: 0;
}
header img {
	height: 50px;
	padding: 0 5%;
	float: left;
}
header p {
	font-size: 40px;
	font-style: italic;
	font-weight: bold;
	margin: 0;
}
header a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}
header a:hover {
	color: #AA2222;
}

#header_blok_lewy {
	float: left;
	width: 45%;
	height: 50px;
	margin-top: 12.5px;
	margin-left: 5%;
}

nav {
  display: flex;
  justify-content: center;
  float: right;
  margin-right: 5%;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
nav li {
  margin: 10px 25px;
  color: white;
}
.submenu {
  display: none;
  position: absolute;
  background-color: #660000;
  padding: 10px;
  top: 100%;
  left: 0;
  width: 300px;
}
nav li:hover .submenu {
  display: block;
}

/*link header wybrany (tymczasowo wyłączone!)*/
.a1 {
  color: #dd8888;
  text-decoration: none;
  font-weight: bold;
}
.a1:hover {
  color: #aa2222;
}


/* iframe */
iframe {
	border: none;
	background: #660000;
	height: 90px;
}
footer {
  background-color: #660000;
  color: lightgray;
  font-size: 11px;
  font-family: arial;
  height: 90px;
  padding: 0 5px;
}
footer img {
	height: 50px;
	margin: 20px 0.1%;
	float: right;
}




/*Przycisk Pobierz*/
#pobierz {
  background-color: #990000;
  color: white;
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  border: 2px solid #660000;
  font-weight: bold;
  float: right;
  margin-right: 50px;
}
#pobierz2 {
  background-color: #990000;
  color: white;
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  border: 2px solid #660000;
  font-weight: bold;
}
#pobierz:hover,#pobierz2:hover {
  background-color: #FF0000;
}

/*Przycisk Pobierz wyłączony*/
#pobierz_off {
  background-color: #aaaaaa;
  color: white;
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  border: 2px solid #660000;
  font-weight: bold;
  float: right;
  margin-right: 50px;
}
#pobierz2_off {
  background-color: #aaaaaa;
  color: white;
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 20px;
  border: 2px solid #660000;
  font-weight: bold;
}




/*Lista zmian*/
#li1 {
  color: #ffaa88;
  font-size: 20px;
}
#ul1 {
  font-size: 20px;
}




/*Aktualnosci*/
.akt{
  margin: 0 auto 50px;
  max-width: 80%;
  border: 3px solid #443333;
  border-collapse:collapse;
  background: #191919;
  text-align:left;
}
.akt::after {
  content: "";
  clear: both;
  display: table;
}
.akt img {
	float: left;
	height:200px;
	margin: 0.6%;
}
#wiecej {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #aa0000;
  line-height: 2;
  border: 1px solid #aa0000;
}
#wiecej:hover {
  color: #ff0000;
  border: 1px solid #ff0000;
}

/* Posty */
.post img {
	width: 49.5%;
}
.post {
	min-height: 300px;
}



#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  pointer-events: none;
}
.snowflake {
  position: absolute;
  top: -10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: fall linear infinite;
}
@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}