header {
	background-image: url(../img/header.jpg);
	background-size: cover;
	padding-bottom: 30px;
}

menu {
	background: rgba(23, 21, 21, 0.7);
	display: flex;
	justify-content: center;
	padding: 0 5px;
}

header .container {
	display: flex;
	justify-content: space-between;
}

header nav {
	display: flex;
}

header nav ul {
	display: flex;
	column-gap: 5px;
}

header nav ul li {
	display: flex;
}

header nav ul li a {
	color: white;
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 0 10px;
}

header nav ul li a:hover {
	background-color: rgba(23, 21, 21, 0.2);
}

header .nadpis {
	color: white;
	text-align: center;
	margin-top: 200px;
	text-shadow: 10px 10px 23px black;
}

header .nadpis h2 {
	font-size: 100px;
	border-bottom: 1px solid white;
	display: inline-block;
	padding-bottom: 10px;
	text-shadow: 10px 10px 23px black;
}

header .nadpis h3 {
	font-size: 20px;
	margin-top: 10px;
}

header .nadpis .social {
	margin-top: 15px;
}

header .nadpis .social a {
	color: white;
	font-size: 40px;
	margin: 0 10px;
}

header .nadpis .social a .fa-facebook:hover {
	color: rgb(24, 119, 242);
}

header .nadpis .social a .fa-instagram:hover {
	color: rgb(228, 64, 95);
}

header .nadpis .social a .fa-youtube:hover {
	color: rgb(205, 32, 31);
}

@media (max-width:700px) {
	header .container {
		flex-direction: column;
	}

	header nav {
		justify-content: center;
		margin-top: 15px;
	}

	header nav ul {
		flex-direction: column;
	}

	header nav ul li {
		justify-content: center;
	}

	header nav ul li a {
		padding: 10px 20px;
	}

	header .container a {
		display: flex;
		justify-content: center;
	}

	header .nadpis {
		margin-top: 0;
		font-size: 10vw;
	}

	header .nadpis h2 {
		font-size: 1em;
	}

	header .nadpis h3 {
		font-size: 0.2em;
		;
	}

	header .nadpis .social a {
		font-size: 0.8em;
		margin: 0 0.2em;
	}
}