@import url('https://fonts.googleapis.com/css?family=Hind');

*, *::before, *::after {
	
}

html, body {
	height: 720px
}

body {
	justify-content: center;
    align-items: center;
    background-color: #212529;
	margin: 0;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    display: flex;
	justify-content: center;
    align-items: center;
    top:0;
    margin: 0;
    margin-top: -140px;
	color: #dee2e6;
	background-color: #212529;
	font-family: 'Hind', sans-serif;
    text-transform: uppercase;
	line-height: 0;
}

.score {
	position: absolute;
	top: 10px;
	line-height: 1;
}

.score span {
	font-size: 3.25rem;
}

.current-score {
    text-align: center;
    left: 100px;
}

.high-score {
	text-align: center;
	right: 90px;
}



.trigger {
  appearance: none;
	position: fixed;
	width: 80px;
	height: 80px;
	bottom: 10px;
  border: 0;
	border-radius: 50%;
  color: inherit;
	background-color: #e64980;
	text-align: center;
	line-height: 80px;
	font-size: 1.25rem;
  text-transform: inherit;
	cursor: pointer;
	user-select: none;
  outline: none;
}

.left-trigger {
	left: 100px;
}

.right-trigger {
	right: 150px;
}

/*@-moz-document url-prefix() {
    .left-trigger {
		margin-left: -370px;
	}
	
	.right-trigger {
		margin-left: 274px;
	}
}*/

canvas {
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.75);
}

/* responsive scaling, because pinball tables are tall 
@media (min-height: 0px) {
	.container { transform: scale(0.25); }
}
@media (min-height: 400px) {
	.container { transform: scale(0.5); }
}
@media (min-height: 600px) {*/
	.container { 
		transform: scale(0.65); 
	}
/*}
@media (min-height: 800px) {
	.container { transform: scale(1); }
}*/

