@font-face{
	font-family: bebas; 
	src: url(fonts/Play-Regular.ttf);
}
html{
	scroll-behavior: auto;
	overflow-x: hidden;
	scrollbar-color: black;
}

body{
	height: 100vh;
	overflow-x: hidden;
	background: black;
	margin: 0px;
	font-family: bebas;
	margin: 0px;
	color: white;
}
/*Top Part*/
header{
	width: 100%;
	height: 150px;
	justify-content: center;
	align-items: center;
	display: flex;
	background-color: black;
	overflow: hidden;
}
header h1{
	transform: scale(1.5);
	color: white;
	font-style: oblique;
	font-weight: bolder;
	white-space: nowrap;
	overflow: hidden;
	animation: typein  2s forwards steps(33);
}
@keyframes typein{
	from{width: 0ch;}
	to{width: 33ch;}
}

/*Navigation Bar*/
#menuic{
	position: fixed;
	top: auto;
	margin: 10px;
	cursor: pointer;
	z-index: 2;
	padding: 5px;
	border-radius: 5px;
	background: black;
	animation: idle;
}
@keyframes menIntro{
	0%{opacity: 100%;}
	95%{opacity: 5%;}
	100%{opacity: 0%;visibility: hidden;}
}
@keyframes menOutro{
	from{opacity: 0%;}
	to{opacity: 100%;}
}

nav{
	position: fixed;
	top: 0px;
	left: -160px;
	height: 100vh;
	width: 10%;
	justify-content: center;
	display: flex;
	background: black;
	z-index: 1;
	animation: idle;
}
@keyframes transin{
	from{left: -160px;}
	to{left: 0px;}
}
@keyframes transout{
	from{left: 0px;}
	to{left: -160px;}
}

nav ul{
	list-style: none;
	position: relative;
	margin: 0px;
	padding: 0px;
	left: 0px;
	top: 70px;
	width: 100%;
}
nav ul li{
	width: 100%;
	margin-bottom: 20px;
}

nav ul li a{
	text-decoration: none;
	font-size: 20px;
	color: white;
}
nav ul li a:hover{
	text-decoration: underline;
	cursor: default;
}

#closeMen{
	cursor: pointer;
}

/*Middle*/
.content{
	width: 100%;
	position: relative;
	z-index: 0;
}