header{
	background-image: url(../img/header.jpg);
	background-position: center;
	background-size: cover;
	padding-top: 150px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
menu{
	background: rgba(121, 120, 120, 0.5);
	display: flex;
	justify-content: center;
	width: 100%;
}
header .container{
	display: flex;
	justify-content: flex-start;
	gap: 30px;
}
header nav{
	display: flex;
}
header nav ul {
	display: flex;
	gap: 5px;
}
header nav ul li{
	display: flex;
	
}
header nav ul li a{
	display: flex;
	align-items: center;
	color: white;
	font-size: 22px;
	text-decoration: none;
	padding: 0 10px;
}
header nav ul li a:hover{
	background: rgb(255, 255, 255, 0.2);
}
header .nadpis{
	color: white;
	text-align: center;
	margin-bottom: 100px;
}
header .nadpis h2{
	font-size: 100px;
	font-family: "Ubuntu";
	margin-bottom: 10px;
	text-shadow: 8px -7px 14px black;
}
header .nadpis h3{
	font-size: 30px;
	font-family: "Ubuntu";
	text-shadow: 8px -7px 14px black;
}
@media (max-width: 700px){
	header .container{
		flex-direction: column;
		gap: 0px;
	}
	header nav ul{
		flex-direction: column;
	}
	header nav {
		justify-content: center;
		margin-top: 15px;
	}
	header nav ul li{
		justify-content: center;
	}
	header nav ul li a{
		padding: 10px 20px;
	}
	header a.logo{
		display: flex;
		justify-content: center;
	}
	header .nadpis{
		margin-top: 10px;
	}
	header .nadpis h2{
		font-size: 15vw;
	}
	header .nadpis h3{
		font-size: 7vw;
	}
}




