.game-holder {
	position: absolute;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
	background: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
}

.world {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.header {
	position: absolute;
	top: 1vh;
	left: 0;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

.header h1 {
	font-family: 'Amatic SC';
	font-size: 4em;
	line-height: 1;
	margin: 0;
	letter-spacing: -0.05em;
	color: #ffffff;
}

.header h1 span {
	font-size: 0.2em;
	font-style: italic;
	display: block;
	margin: 0 0 -1.5em -7em;
	letter-spacing: 0px;
}

.header h2 {
	font-family: 'Andika';
	font-size: 0.585em;
	margin: 0.25em 0;
	white-space: nowrap;
	text-indent: 1em;
	letter-spacing: 1em;
	text-transform: uppercase;
	color: #d6483b;
}

.score {
	width: 100%;
	margin: 1em 0 0;
	text-align: center;
	white-space: nowrap;
	display: block;
}

.score__content {
	position: relative;
	display: inline-block;
	padding: 0 1em;
	vertical-align: top;
}

.score__content:nth-child(1) {
	border-right: 1px solid #ffffff;
}

.score__label {
	font-size: 11px;
	position: relative;
	margin: 0 0 0.2em 0;
	text-align: center;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff;
}

.score__value {
	font-family: 'Andika';
	font-weight: bold;
	color: #ffffff;
}

.score__value--level {
	font-size: 22px;
}

.score__value--dist {
	font-size: 22px;
}

.level-circle {
	position: absolute;
	left: 50%;
	width: 46px;
	margin: -37px 0 0 -23px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.score__value--energy {
	position: relative;
	width: 60px;
	height: 8px;
	margin-top: 20px;
	border-radius: 3px;
	background-color: #d1b790;
}

.energy-bar {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 2px;
	background-color: #f25346;
	-webkit-animation-name: none;
	animation-name: none;
	-webkit-animation-duration: 150ms;
	animation-duration: 150ms;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.buttons {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	bottom: 0vh;
	display: block;
}

.message {
	font-weight: bold;
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	pointer-events: none;
	display: block;
}

.message--start {
	font-size: 1.50vw;
	bottom: 3vh;
	display: block;
	text-indent: 0.5em;
	letter-spacing: 0.5em;
	color: #FADB35;
}

.message--instructions {
	font-family: 'Andika';
	font-size: 0.75em;
	bottom: 12vh;
	letter-spacing: 0.2em;
	color: #FADB35; /* 68c3c0*/
}

.message--instructions span {
	display: block;
	color: #d6483b;
	white-space: nowrap;
}

.message--footer {
	display: block;
	font-family: 'Andika';
	font-size: 0.75em;
	bottom: 4vh;
	letter-spacing: 0.2em;
	color: #d6483b;
}


@-webkit-keyframes blinking {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes blinking {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

@media screen and (max-width: 40em) {
	.header {
		font-size: 0.75em;
		top: 6.5em;
	}
	.header h2 {
		letter-spacing: 0.65em;
	}
}

button {
	outline: none;
	cursor: pointer;
	border: none;
	box-shadow: 2px 3px 0px 0px #aaaaaa; /* #A2DBFF, abeeff*/
}

#controlls {
	position: absolute;
	/*min-width: 100%;
	min-height: 100%;*/
	left: 0;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 200;
	bottom:10vh;
  }
  #controlls div {
	display: grid;
	grid-template-columns: 50px 50px 50px;
	grid-template-rows: auto auto;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	margin-bottom: 20px;
  }
  #controlls button {
	width: 100%;
	background-color: white;
	border: 1px solid white;
  }
  #controlls button:first-of-type {
	grid-column: 1/-1;
  }