html {    height: 100%;}

body {
	background: url(bg.jpg);
	background-size: cover;
	text-align: center;
	position: relative;
	z-index: 0;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(8, 119, 99, 0.9); /* zielony z 50% przezroczystością */
	z-index: -1;
}

.law {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .law {
    width: 50%;
  }
}

.content {
	display: block;
	margin-top: 30vh;
}