html body
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

header
{
	background-image: url(../img/hlava.jpg);
	background-size: cover;
	padding-bottom: 0px;
}

menu
{
	background-color: rgba(72, 52, 42, 0.7);
	display: flex;
	justify-content: center;
	padding-right: 10px;

}

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
{
	display: flex;
	align-items: center;
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	padding: 0 10px;

}

header nav ul li a:hover
{
	background-color: rgba(178, 138, 119, 0.3);
	padding: 0 10px;
}

header .nadpis
{
	font-size: 6vw;
	text-align: center;
	margin-top: 100px;
	color: white;
	text-shadow: 8px 0px 4px rgb(27, 27, 27);
}

header .nadpis h2
{
	font-size: 88px;
	border-bottom: 1px solid white;
	display: inline-block;
	margin-bottom: 10px;
	text-shadow: 8px 0px 4px rgb(27, 27, 27);

}

header .nadpis h3
{
	font-size: 0.3em;
	display: block;
	margin-top: 15px;
	text-shadow: 8px 0px 4px rgb(27, 27, 27);

}

header .nadpis .social
{
	margin-top: 20px;
	font-size: 0.3em;
	color: white;

}

header .nadpis .social a i.fa-facebook:hover
{
	color: #1877F2
}

/* muže být tato varianta zápisu */
header .nadpis .social a:hover i.fa-instagram
{
	color: #E4405F
}

/* nebo tato varianta zápisu */
header .nadpis .social a i.fa-youtube:hover
{
	color: #CD201F
}

header .nadpis .social a
{
	margin-right: 25px;
	font-size: 5vw;
	color: white;

}

@media(max-width:800px)
{
	header .container
	{
		flex-direction: column;
		align-items: center;
	}

	header .container ul
	{
		flex-direction: column;
	}

	header nav
	{
		justify-content: center;
	}

	header nav ul li
	{
		justify-content: center;
	}

	header nav ul li
	{
		padding: 10px 10px;
	}

	header .nadpis
	{
		margin-top: 0.2em;
		font-size: 10vw;
	}

	header .nadpis h2
	{
		font-size: 1em;
	}

	header .nadpis h3
	{
		font-size: 0.3em;
	}
}