body {
	padding: 0;
	margin: 0;
	background-color: #111;
	font-family: 'Rajdhani', sans-serif;
}

.container {
	position: absolute;
	width: 80vw;
	max-width: 1920px;
	height: auto;
}

.center {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
}

.modal-container {
	background-color: #333;
	position: relative;
	padding: 40px;
	box-sizing: border-box;
	color: #c7c7c7;
	font-size: 18px;
	display: inline-block;
}

h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color:#fff;
}

.modal-container p {
	margin-bottom: 10px;
}

.modal-container li {
	margin: 5px 0;
}

.button {
	background-color: #ef4784;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.2s;
	display: inline-block;
	color: #fff;
	box-sizing: border-box;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: 600;
	border-radius: 5px;
	vertical-align: top;
	line-height: 26px;
}

.button:hover {
	background-color: #fc6ba3;
	transform: scale(1.05);
}

#unity-canvas {
	background: #000;
}

.unity-mobile #unity-canvas {
	width: 100%;
	height: 100%
}

#unity-loading-bar {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none
}

#unity-logo {
	width: 154px;
	height: 130px;
	background: url('unity-logo-dark.png') no-repeat center
}

#unity-progress-bar-empty {
	width: 141px;
	height: 18px;
	margin-top: 10px;
	background: url('progress-bar-empty-dark.png') no-repeat center
}

#unity-progress-bar-full {
	width: 0%;
	height: 18px;
	margin-top: 10px;
	background: url('progress-bar-full-dark.png') no-repeat center
}

.footer {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

#fullscreen-button {
	height: 46px;
	padding: 10px;
}

#fullscreen-button svg {
	fill: white;
	width: 26px;
}

strong {
	font-weight: 800;
    font-size: 1.2em;
    color: #fff;
}
