@charset "utf-8";
/* CSS Document */
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body
{
	min-height: 200vh;
	background-color: #414143;
	background: url("../Picture/hatter.png");
	background-size:cover;
	background-repeat:no-repeat;
	background-attachment: fixed;
	color: #F5DFA4;
}

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.6s;
	padding: 15px 40px 15px 100px;
	z-index: 100000;
}

header .active {
	color: #F3951E;
}

header.sticky {
	padding: 5px 100px;
	background: #5a5a5b;
}

header .logo
{
	position: relative;
	/*font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;*/
	transition: 0.6s;
}

header .logo a{
	
}

header .logo img {
	width: 5%;
	visibility: hidden;
}

header ul
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	
}

header ul li
{
	position: relative;
	list-style: none;
	
	
}

header ul li a
{
	position: relative;
	margin: 0 15px;
	text-decoration: none;
	text-shadow: 2px 2px 3px black;
	color: #fff;
	font-size: 20px;
	letter-spacing: 2px;
	font-weight: 500px;
	transition: 0.6s;
}

.banner {
	position: relative;
	width: 100%;
	height: 65vh;
	background: url("../Picture/fejlec.png");
	background-size:contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0;
	padding: 0;
}


header.sticky ul li a {
	/*color: #fff;*/
}

header.sticky img {
	visibility: visible;

}
