@CHARSET "UTF-8";

div.menu_curtain {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 0%;
	background: #000000CC;
	z-index: 10;
	transition: all 0.5s ease;
	overflow: hidden;
	text-align: center;
}

div.menu_content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: inherit;
	z-index: 11;
	display: flex;
	align-items: center;
	justify-content: center;
}

div.menu_close {
	position: absolute;
	top: 50px;
	right: 50px;
	width:30px;
	height: 30px;
	z-index: 12;
	transition: all 0.5s ease;
	transform: rotate(-90deg);
}

div.menu_top_spacer {
	height: 100px;
}

a.menu:link {
	font-size: 30px;
	color: #CCCCCC;
	line-height: 50px;
	text-decoration: none;
	transition: all 0.5s ease;
}

a.menu:active {
	font-size: 30px;
	color: white;
	line-height: 50px;
	text-decoration: none;
	transition: all 0.5s ease;
}

a.menu:hover {
	font-size: 40px;
	color: white;
	line-height: 50px;
	text-decoration: none;
	transition: all 0.5s ease;
}

a.menu:visited {
	font-size: 30px;
	color: #AAAAAA;
	line-height: 50px;
	text-decoration: none;
	transition: all 0.5s ease;
}

div.menu_button {
	position: absolute;
	right: 50px;
	top: 50px;
	cursor: pointer;
	opacity: .8;
	transition: all .4s ease;
	background: inherit;
	width: 35px;
	height: 25px;
	z-index: 2;
}

div.first-span {
	content: "";
	position: absolute;
	height: 2px;
	width: 50%;
	top: 4px;
	right: 0px;
	background-color: whitesmoke;
	transition: all .5s ease;
}

div.second-span {
	content: "";
	position: absolute;
	height: 2px;
	width: 75%;
	top: 12px;
	right: 0px;
	background-color: whitesmoke;
	transition: all .3s ease;
}

div.third-span {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	top: 20px;
	right: 0px;
	background-color: whitesmoke;
	transition: all .3s ease;
}

div.menu_button:hover > div.first-span {
	width: 100%;
}

div.menu_button:hover > div.second-span {
	width: 100%;
}

div.menu_button:active ~ div.menu_curtain {
	height: 100%;
}

div.menu_curtain:has(div.menu_content:hover) {
	height: 100%;
}

div.menu_curtain:has(div.menu_close:hover) {
	height: 100%;
}

div.menu_curtain:has(div.menu_close:active) {
	height: 0%;
	transition: all 0s ease;
}

div.menu_close:hover {
	cursor: pointer;
	transition: all 0.5s ease;
	transform: rotate(0deg);
}