html, body {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
}
* {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	user-select: none;
	text-align: center;
	border-bottom: 2px dashed rgba(255,255,255,0.7);
	text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	letter-spacing: 0.3px;
	margin: 0 0 15px;
	padding: 5px 15px;
}
a, a:visited, a:active, a:hover {
	text-decoration: none;
	user-select: none;
	color: rgba(255,255,255,0.7);
}
button {
	border: 0;
	user-select: none;
	cursor: pointer;
}
ul, ul li {
	margin: 0;
	padding: 0;
	text-align: left;
}
ul {
	padding: 0 25px;
}
:root {
	--color-accent: #3d1074;
	--color-main: #6a36a5;
	--color-hover: #ab8fca;
}
input {
	transition: all 0.2s ease-in;
}
input:disabled {
	filter: grayscale(100%);
	transition: all 0.2s ease-in;
}

/****** layout *********/
#wrapper {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: url('../images/noxis_bg.jpg') 50% 50% / cover no-repeat;
	position: relative;
}
.container {
	width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: flex-start;
}
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 80px;
}
#header .container {
	padding: 25px 35px;
	flex-direction: row;
	justify-content: space-between;
}

#footer {
	position: fixed;
	bottom: 5vh;
	right: 5vh;
	width: 100%;
	height: 25px;
	line-height: 25px;
	color: #fff;
	padding: 0 35px;
	text-align: right;
	user-select: none;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
#title {
	color: #fff;
	text-align: center;
	font-size: 24px;
	z-index: 999;
	display: flex;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
	transform: translateZ(10px);
}

/********* menu ************
******************************/
#header-menu {
	display: flex;
	flex-direction: row;
	text-align: center;
	height: 100%;
}
.mi {
	padding: 5px 10px;
}

/******** Media Queries *********
********************************/
@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 720px) {
	
}