/**  
To emulate the phone:
 - huawei mate 10 resolution: 360 x 640

To debug from the smartphone: chrome://inspect/#devices
**/


/* Overall dark background and light text */
body {
	background-color: var(--background-color);
	color: var(--text-color);
	font-family: sans-serif;
	margin: 0;
	padding: 0;
}

/* Header */
h1 {
	display: flex;
	text-align: center;
	padding-top: 1rem;
	margin: 0;
}

.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--top-bar-background-color);
	color: var(--top-bar-text-color);
	padding: 0.5rem 0;
	font-family: sans-serif;
	z-index: 1000;
	border-top: 1px solid var(--pe-chrono-border-color);
	border-bottom: 1px solid var(--pe-chrono-border-color);
}

.back-button {
	padding-left: 1rem;
	padding-right: 1rem;
}

.back-button svg {
	height: 1.75rem;
	fill: none;
	stroke: var(--top-bar-text-color);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.title-container {
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 90%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.2rem;
	pointer-events: none; /* prevent it from covering buttons */
}

.main-title {
	margin: 0;
	font-size: clamp(1.5rem, 8vw, 4rem);
	font-weight: bold;
	text-align: center;
	padding: 1rem;
}

.game-title {
	margin: 0;
	font-size: clamp(1.5rem, 6vw, 2.5rem);
	font-weight: bold;
	text-align: center;
	padding: 1rem;
}