

@font-face {
    font-family: 'FontAwesome5Pro-Light';
    src: url('/static/fonts/fa-light-300.eot'); /* IE9 Compat Modes */
    src: url('/static/fonts/fa-light-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('/static/fonts/fa-light-300.woff') format('woff'), /* Pretty Modern Browsers */
       url('/static/fonts/fa-light-300.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('/static/fonts/fa-light-300.svg#svgFontName') format('svg'); /* Legacy iOS */
}


* {
	overscroll-behavior: none;
}


body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: 'OpenSauceOne', sans-serif;
	font-size: 13px;
	--decoration-display: block;
	/*background-image: url("/static/images/background.jpg");*/
  /* Full height and width */
  min-height: 100vh;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Optional: Fixed background (doesn't scroll with content) */
  background-attachment: fixed;
}

.title-image{
	width: 100%;
	max-width: 400px;
}

.ident {
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	height: 64px;
	padding: .5rem 1rem;
	display: flex;
	align-items: center;
}

.instructions{
	position: absolute;
	padding-top: 5px;
	padding-bottom: 5px;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0.0, 0.0, 0.0, 0.4);
	color: white;
    font-family: monospace;
    text-align: center;
}



.ident > a:hover{
	text-decoration: none;
}

.pan-logo{
   width: 48px;
    margin-top: 4px;
    margin-left: 8px;
    margin-bottom: 4px;
}

h1{
	margin-top: 0px;
	margin-bottom: 40px;
}

.title{
	box-sizing: border-box;
	display: inline-block;
	font-family:  Quicksand, sans-serif;
    color: var(--bluegreen_colour);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-left: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.big-title{
	box-sizing: border-box;
	display: inline-block;
	font-family:  Quicksand, sans-serif;
    color: white;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-top: 30px;
	margin-bottom: 40px;
    padding-top: 2px;
    padding-bottom: 2px;
}

a {
	color: #04e5fa;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
}

a, button, input, select {
	pointer-events: auto;
}

.lil-gui {
	z-index: 2 !important; /* TODO Solve this in HTML */
}

@media all and ( max-width: 640px ) {
	.lil-gui.root {
		right: auto;
		top: auto;
		max-height: 50%;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}
}

#overlay {
	position: absolute;
	font-size: 16px;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(0,0,0,0.7);
}

	#overlay button {
		background: transparent;
		border: 0;
		border: 1px solid rgb(255, 255, 255);
		border-radius: 4px;
		color: #ffffff;
		padding: 12px 18px;
		text-transform: uppercase;
		cursor: pointer;
	}

#notSupported {
	width: 50%;
	margin: auto;
	background-color: #f00;
	margin-top: 20px;
	padding: 10px;
}

.instructions{
	display: none;
}