@charset "utf-8";

/* --------------------------------------------------------------------------------------------------------- */

video{ position: fixed; z-index: 0; }

/* ----- HTML ----- */
::-webkit-scrollbar{
    width: 5px;
	height: 10px;
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb{
    background: #fff;
}

*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body{
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;

	margin: 0;
	padding: 0;
	border: 0;
	outline: none;

	font-family: 'Rajdhani';
	font-size: 25px;
	line-height: 30px;
	text-transform: none;

	background-color: #000;
	color: #e1e1e1;
}
.htmlContainer{
	position: relative;
	width: 100%;
	height: auto;

	min-width: 1000px;
}
.htmlContainer .htmlWrapper{
	position: relative;
	width: 100%;
	height: 100%;
}

/* --------------------------------------------------------------------------------------------------------- */

@media all and (orientation:landscape){
	video{
		width: 100%;
	}
}
@media all and (orientation:portrait){
	video{
		height: 100%;
	}
}

/* --------------------------------------------------------------------------------------------------------- */
