/* body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	flex: 1;
	color: #444444;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	margin: 0px;
	background-image: url(images/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Poppins', sans-serif;
} */
@font-face {
	font-family: InspireTWDC-Heavy;
	src: url('fonts/InspireTWDC-Heavy.otf') format('truetype');
	font-display: swap;
	font-style: normal;
	font-weight: 600;
}

html,
body {
	box-sizing: border-box;
}

body {
	width: 100%;
	/* height: 100vh; */
	margin: 0px;
	background-image: url(images/background.min.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-family: InspireTWDC-Heavy;
}

.Main-div {
	max-width: 550px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	padding: 0;
	box-sizing: border-box;
}

.header {
	height: auto;
	box-sizing: border-box;
}
.header-inner{
	padding: 10px;
}

.logo img {
	width: 550px;
	margin: 0 auto;
	display: block;
	max-width: 100%;
}

.body-main {
	height: 55vh;
	box-sizing: border-box;
}

.body-inner {
	padding: 15px 0px 35px;
}

.title {
	color: #fff;
	text-align: center;
	margin-top: 0;
}

.dice {
	border: 3px dashed #fff;
	padding: 20px;
	position: relative;
	min-height: 48vh;
	/* max-width: 450px; */
	margin: 0 auto;
	box-sizing: border-box;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.ui-controls {
	position: relative;
	z-index: 9;
	text-align: center;
}

.ui-controls #score-result {
	font-weight: 700;
	color: #780e1a;
}

.ui-controls #roll-btn {
	background-color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
	min-width: 205px;
	transition: background-color 0.2s, transform 0.3s;
	font-family: InspireTWDC-Heavy;
	color: #000;
}

.ui-controls #roll-btn:active {
	transform: translateY(4px);
}

.ui-controls .score {
	padding: 10px 20px;
	background: #fff;
	font-size: 18px;
	display: inline-block;
	min-width: 205px;
	box-sizing: border-box;
	margin-left: 33px;
	text-align: center;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
}

.footer-credit {
	clear: both;
	text-align: center;
	height: auto;
	box-sizing: border-box;
}
.footer-inner{
	padding-top: 130px;
	padding-bottom: 10px;
}

.footer-credit-inner {
	background-color: #fff;
	padding: 10px;
}

.img-fluid {
	max-width: 100%;
}

.logo-footer {
	width: 50%;
}

@media screen and (min-width:768px) {
	.logo-footer {
		width: 320px;
	}
}

@media screen and (max-width:767px) {

	.header {
		height: 15vh;
	}

	.dice {
		border: 2px dashed #fff;
		padding: 20px 10px;
		min-height: 40vh;
		margin: 0 10px;
	}

	.title {
		font-size: 17px;
		line-height: 24px;
	}

	.ui-controls #roll-btn {
		font-size: 14px;
		min-width: 135px;
		padding: 10px 5px;
	}

	.ui-controls .score {
		padding: 10px 5px;
		font-size: 14px;
		min-width: 125px;
		margin-left: 5px;

	}

	.footer-credit {
		background: #fff;
		height: 30vh;
		padding: 0;
	}

	.footer-inner {
		padding-bottom: 50px;
		padding-top: 0;
		/* margin-left: -4%; */
		/* margin-right: -4%; */
	}
}