
@font-face{

	font-family: main;
	src: url('typefaces/Akzidenz-grotesk-roman_0.ttf');

}

@font-face{

	font-family: main;
	font-weight: 700;
	src: url('typefaces/Akzidenz-grotesk-bold_0.ttf');

}

@font-face{

	font-family: main;
	font-weight: 900;
	src: url('typefaces/Akzidenz-grotesk-black_0.ttf');

}

@font-face{

	font-family: main;
	font-weight: 300;
	src: url('typefaces/Akzidenz-grotesk-light_0.ttf');

}


@font-face{

	font-family: mainserif;
	font-weight: 500;
	src: url('typefaces/GARA.TTF');

}

@font-face{

	font-family: mainserif;
	font-weight: 700;
	src: url('typefaces/GARABD.TTF');

}

@font-face{

	font-family: mainserif;
	font-weight: 500;
	font-style: italic;
	src: url('typefaces/GARAIT.TTF');

}

@font-face{

	font-family: icons;
	font-weight: 500;
	font-style: italic;
	src: url('typefaces/IcoMoon-Free.ttf');

	text-rendering: optimizeLegibility;

}

body{

	background-color: black;

	color: white;

	font-family: main;

	overflow: hidden;

}


/* UI STUFF */

#uiwrapper{

	text-align: center;

	position: absolute;
	top: 0;
	left:0;
	right:0;
	height: 100vh;

	transition: all 0.5s;

	box-sizing: border-box;
	overflow: auto;


}

.ui-wrapper-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	flex-direction: column;
	min-height: 100vh;
	box-sizing: border-box;
}

.uiobject{

	display: block;

	margin-bottom: 20px;

	text-align: left;

	vertical-align: top;


	margin: 0 auto;
	max-width: 400px;
	width: 100%;
}

#go{
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

input, select{

	width: 100%;

	background-color: transparent;

	color: white;

	border: none;

	background-color: white;
	border-radius: 10px;
	transition: border-bottom 0.5s;
	padding: 8px;

	font-size: 18pt;

}

input:focus{

	outline: none;	


}

.uiinputnoborder input{

	border-bottom: none !important;

}


input[type=range] {

  height: 40px;
  -webkit-appearance: none;
  margin: 5px 0;
  width: 100%;

  background-color: transparent;

  cursor: pointer;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: white;
  border-radius: 0px;
  border: none;

  margin: 10px 0;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -4px;

  transition: transform 0.5s;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #FFFFFF;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: white;
  border-radius: 0px;
  border: 1px solid #000000;
}
input[type=range]::-moz-range-thumb {
  border: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;

  transition: transform 0.5s;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: white;
  border: none;
  color: transparent;
}

input[type=range]::-ms-thumb {
  margin-top: 1px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;

  border: none;

  transition: transform 0.5s;
}

input[type=range]:focus::-ms-fill-lower {
  background: #FFFFFF;
}
input[type=range]:focus::-ms-fill-upper {
  background: #FFFFFF;
}

input[type=range]:active::-webkit-slider-thumb 
{

	transform: scale(2);

}

input[type=range]:active::-moz-range-thumb
{

	transform: scale(2);

}

input[type=range]:active::-ms-thumb
{

	transform: scale(2);

}


.uibutton{

	cursor: pointer;

	text-rendering: optimizeLegibility;

}


/*CURSORTYPE*/

#cursortype{

	position: absolute;

	opacity: 0;
	transition: opacity 0.5s;

	pointer-events: none;

	z-index: 9999;

}

#explodingtypewrapper{

	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;

	cursor: none;

	pointer-events: none;

	opacity: 0;
	transition: opacity 0.5s;

	overflow: hidden;

}

.explodingtypeobject{

	position: absolute;

	font-size: 72pt;

	color: black;
	-webkit-text-fill-color: rgb(230,230,230); /* Will override color (regardless of order) */
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;

	font-weight: 900;

	opacity: 0;

	pointer-events: none;

}

#back{

	z-index: 999;
	position: relative;

}

#back p{

	z-index: 999;

}