/* Global styles */
html { width:100%; height:100%; padding:0; margin:0; overflow:hidden; }

body {
	background-color: #ffffff;
	color: #000000;
	width:100%; height:100%; padding:0; margin:0; overflow:hidden;
}

.bg-image::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(25px); /* apply the blur */
	pointer-events: none; /* make the overlay click-through */
}

.bg-image {
	position: relative;
	width: 100%;
	height: 100%;
	background: no-repeat center center;
	background-image: url('../assets/orabolasbg.jpg');
	background-size: cover;
	z-index: 0;
}

#game {
	/*background-color: #ffffff;*/
	background: none;
	margin:0;
	padding:0;
	display: block;
	position: absolute;
	width: 100%;
	height: auto;
	z-index: 1;
	overflow:hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#game-100 canvas{
	width: 100% !important;
	height: 100% !important;
	margin-top: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	margin-bottom: 0px !important;
	padding: 0;
}

#orientation {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	text-align: center;
	display: none;
	justify-content: center;
	align-items: center;
}

.orientationImage {
    height: auto; 
    width: auto; 
    max-width: 50%; 
    max-height: 50%;
	position: absolute;
	top: 25%;
	left: 25%;
}