body{
	position: relative;
}
header{
	position: sticky;
	top: -1px;
	z-index: 1;
	margin-top: -70px;
	/*margin-top: -10px;*/
	width: 100%;
	background: rgba(0,0,0,0);
	background: linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 92%);
	background: -webkit-linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 92%);
	background: -moz-linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 92%);
}
header .top {
	padding: 10px;
}
header .top .header nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header .top .header nav div a {
	height: 50px;
    align-items: center;
	margin-left: 20px;
	color: #ecf0f1;
	text-decoration: none;
	font-weight: bold;
	transition-duration: 200ms;
}
header .top .header div a:hover {
	color: white;
	text-decoration: none;
	transition-duration: 200ms;
	text-shadow: 0px 0px 2px white;
}
header .top .header{
	background-color: rgba(189, 195, 199,0.2);
	height: 50px;
	border-radius: 10px;
	box-shadow: 0px 0px 7px rgba(100, 100, 100, 0.2);
	backdrop-filter: blur(3px);
	transition-duration: 200ms;
}
header .top .header nav .menunormal li, nav div a:not(.menumobile){
	list-style-type: none;
	display: inline-flex;
}
header .top .header li{
	padding: 0px;
	margin-left: 20px;
}
header .top .header .menunormal li a{
	color: #ecf0f1;
	opacity: 100%;
	text-decoration: none;
	transition-duration: 200ms;
}
header .top .header .menunormal li a:hover{
	color: white;
	text-decoration: none;
	transition-duration: 200ms;
	text-shadow: 0px 0px 2px white;
}
header .top .header nav .menunormal .menuicon{
	color: white;
	margin-right: 20px;
	transition-duration: 200ms;
}
header .top .header nav .menunormal .menuicon:hover{
	color: white;
	text-decoration: none;
	transition-duration: 200ms;
	text-shadow: 0px 0px 2px white;
}
header .top .menucheckbox{
	display: none;
}
#navi:checked + .header{
	height: 600px;
	background-color: rgba(100, 100, 100, 0.75);
	transition-duration: 200ms;
}
#navi:checked ~ * .menunormal li a{
	opacity: 0%;
	transition-duration: 200ms;
}


header .top .header .menumobile{
	display: none;
	text-align: center;
	color: white;
	list-style-type: none;
	width: flex;
	margin-left: 0px;
	padding-left: 0px;
}

header .top .header .menumobile li{
	margin-left: 0px;
	margin-top: 5px;
}
header .top .header .menumobile a{
	justify-content: center;
	display: center ;
	color: white;
	text-decoration: none;
	cursor: pointer;
}
header .top .header .menumobile li a:hover{
	color: white;
	text-decoration: none;
	transition-duration: 200ms;
	text-shadow: 0px 0px 2px white;
}
header .top .header .menumobile h1{
	text-align: center;
	color: white;
	text-decoration: none;
	font-size: 24px;
	font-weight: normal;
}
header .top .header .menumobile .gd{
	font-size: 24px;
	font-weight: 900;
	margin-top: 40px;
	margin-bottom: 40px;
}
#navi:checked ~ * .menumobile{
	display: block;
}




@media (max-width: 1000px){
	header .top .header .menunormal{
		width: 50px;
		justify-content: right;
	}
	header .top .header .menunormal li:not(.menuicon){
		width: 0px;
		display: none;
	}
	header .top .header .menunormal li a{
		display: none;
	}
}