@import url('https://fonts.googleapis.com/css2?family=Recursive:MONO@1&display=swap');






* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Recursive;
  font-variation-settings: "MONO" 1;
  background-image: url('https://raw.githubusercontent.com/Eracom-IMD451/temp-ctrl/main/Img/Background.jpg');
	background-size: cover;
	background-position: center;
	color: #222;
}

#app {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	padding: 16px;
	gap: 16px;
	min-height: 100dvh;
}

#displays {
	display: flex;
	gap: 32px;
	width: 100%;
	justify-content: center;
}

.display {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-size: 2rem;
}

.display .label {
	font-weight: bold;
	font-size: 1.2rem;
	opacity: 0.5;
}

.display .value {
	font-variant-numeric: tabular-nums;
}

#game-canvas {
	width: 100%;
	flex: 1;
	min-height: 200px;
}

#game-canvas canvas {
	display: block;
}

#controls {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 32px;
	width: 100%;
}

.control-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.control-label {
	font-weight: bold;
	font-size: 1.2rem;
	opacity: 0.5;
}

.speed {
	font-size: 1.2rem;
	width: 32px;
	text-align: center;
	font-variant-numeric: tabular-nums;
}

button {
	font-size: 1.5rem;
	width: 64px;
	height: 64px;
	border: 0px solid #222;
	background: #fff;
	border-radius: 0px;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

/*
.btn-t {
	border-color: #c83838;
	color: #c83838;
  background-image: url('https://raw.githubusercontent.com/Eracom-IMD451/temp-ctrl/main/Img/DownArrow.jpg');
	background-size: contain; 
  background-position: center;
	background-repeat: no-repeat;
}
*/


#btn-t-plus, #btn-h-plus {
	background-image: url('https://raw.githubusercontent.com/Eracom-IMD451/temp-ctrl/main/Img/UpArrow.jpg');
	background-size: contain; 
  background-position: center;
	background-repeat: no-repeat;
}

#btn-t-minus, #btn-h-minus {
	background-image: url('https://raw.githubusercontent.com/Eracom-IMD451/temp-ctrl/main/Img/DownArrow.jpg');
	background-size: contain; 
  background-position: center;
	background-repeat: no-repeat;
}

/*
.btn-t:active {
	background: none;
}

.btn-h {
	border-color: none;
	color: none;

}

.btn-h:active {
	background: none;
}*/


