
html {
  
  /*box-sizing: border-box ;*/
  --parent-height : 550px ;
  --duration: 1s ;
  --duration-text-wrap: 12s 1.5s cubic-bezier(0.82, 0.82, 1, 1.01) ;
  --cubic-header: var(--duration) cubic-bezier(0.71, 0.21, 0.3, 0.95) ;
  --cubic-slider : var(--duration) cubic-bezier(0.4, 0, 0.2, 1) ;
  --cubic-play-list : .35s var(--duration) cubic-bezier(0, 0.85, 0.11, 1.64) ;
  --cubic-slider-context : cubic-bezier(1, -0.01, 1, 1.01) ;
  
}

html *,
html *::before,
html *::after {

  box-sizing: inherit ;
  scrollbar-width: none ;

}

/* -------------------------------------------------- Other Settings -------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
  	outline: none;
}

*:not(#myModal), *:before, *:after {
	box-sizing: border-box;
  }

html, body {
	background-color: #696969;
	font-family: Trebuchet MS, Arial, sans-serif;
	height: 100%;
	max-width: 100%;
	margin: 0;
	overflow: hidden;
}

/* -------------------------------------------------- Top Bar -------------------------------------------------- */
header {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	
	
	position: fixed;
	top: 0px;
	height: fit-content;
	width: 100%;
	font-size: 14px;

	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

header span {
	right: 20px;
}

header span:hover {
	color: #fff;
}
/*
header div {
	height: 100%;
	width: 100%;
}*/

#main {
	background-color: #212121;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	
	height: 100%;
	width: 100%;
	padding: 35px 0 0;
}

a,
a:visited,
a:focus,
a:active,
a:link {
	outline: 0;
	text-decoration: none;
}

a {
	color: currentColor;
	transition: .5s ease-in-out;
}

ul {
	list-style: none;
	padding: 0;
}



@media only screen and (max-width: 1920px) {

}
/*------------------------------------------------------------------------- Tablet -------------------------------------------------------------------------*/

@media only screen and (max-width: 1024px) {

}

/*----------------------------------------------------------------------- Mobile --------------------------------------------------------------------------*/

@media only all and (max-width: 768px) {

}

@media only all and (max-width: 600px) {

}
@media only all and (max-width: 500px) {

}
/*
@media only all and (max-width: 400px) {
	html {
		
		overflow: auto;
	}
	body {
		
		overflow-y: scroll;
	}
	main {
		
		overflow: auto;
	}
	header {
		
		overflow: scroll;

	}
	header span {
		
		overflow: auto;
	}
}
@media only all and (max-width: 384px) {

}
@media only all and (max-width: 360px) {
	html {
		min-width: 500px;
		overflow: auto;
	}
	body {
		min-width: 500px;
		overflow-y: scroll;
	}
	main {
		min-width: 360px;
		overflow: auto;
	}
	header {
		display: block;
		position: absolute;
		width: 100%;
		min-width: 500px;
		overflow: scroll;

	}
	header span {
		padding-left: 265px;
		float: right;
		overflow: auto;
	}
}
*/
@media only all and (max-width: 320px) {

}
@media only all and (max-width: 250px) {

}