:root {
	--bcGreen: #00693C;
	--bcOrange: #E98300;
	--vignette: radial-gradient(rgba(163, 181, 211, .1) 45%, rgba(74, 129, 231, 0.34) 100%);
}

html {
	box-sizing: border-box;
	font-family: 'Avenir', sans-serif;
	color: var(--dark);
}

.no-pointer-events {
	pointer-events: none;
}

.pointer-events {
	pointer-events: all;
}

#title {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-left: 50px;
	padding-top: 30px;
}

#title h1 {
	margin: 4px 0px;
	color: var(--bcGreen);
}

#title h2 {
	margin: 4px 0px;
	color: var(--bcOrange);
}

#scene {
	z-index: 0;
}

.button-container {
	display: grid;
	grid-gap: 5px;
	grid-template-columns: repeat(2, 120px);
	grid-template-rows: repeat(auto-fit, 40px);
}

.test-button {
	background-color: var(--bcOrange);
	width: 120px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	display: flex;
	flex-direction: column;
  	justify-content: center;
  	align-items: center;
	z-index: 11;
}

.test-button h3 {
	color: white;
	font-size: 15px;
	line-height: 6px;
	margin: 10px 0px 0px 0px;
}

.test-button p {
	color: white;
	font-size: 10px;
	line-height: 6px;
}

.selected {
	background-color: var(--bcGreen);
}

.vignette-overlay {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: var(--vignette);
	pointer-events: none;
}

  /* Avenir regular */

@font-face {
	font-family: "Avenir";
	src: url("../fonts/Avenir/WOFF/Avenir-Roman-12.woff2") format('woff2'),
		  url("../fonts/Avenir/WOFF/Avenir-Roman-12.woff") format('woff');
	font-style: normal;
	font-weight: regular;
  }

  /* Avenir bold */

@font-face {
	font-family: "Avenir";
	src: url("../fonts/Avenir/WOFF/Avenir-Black-03.woff2") format('woff2'),
		  url("../fonts/Avenir/WOFF/Avenir-Black-03.woff") format('woff');
	font-style: normal;
	font-weight: bold;
  }