body {
	background-image: url('../Img/background.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.container {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	font-family: Arial, sans-serif;
}

.construction {
	position: relative;
	top: -150px; /* Move the text */
}

.construction h1 {
	font-size: 5em;
	font-family: sans-serif;
  line-height: 0.5; /* Proximity of lines (h1) */
	color: white;
}

h2 {
	font-size: 2em;
	margin-top: -30px;
	font-family: sans-serif;
	color: white;
}

.progress-bar {
	width: 20%;
	background-color: #f3f3f3;
	border-radius: 13px;
	padding: 3px;
	margin: 20px auto;
	margin-top: 10px;
	margin-bottom: 60px;
	align-items: center;
	height: 20px;
	position: relative;
	display: flex;
	align-items: center;
}

.filler {
	position: relative;
	height: 100%;
	width: 10%;
	background-color: #1DA1F1;
	border-radius: 10px;
}

.loading-text {
	position: absolute;
	width: 100%;
	text-align: center;
	font-weight: bold;
}

.progress-bar span {
	position: absolute;
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #90ee90;
}

.game-button {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	width: 15%;
	margin: 20px auto;
	padding: 10px 20px;
	background-color: #008CBA;
	color: white;
	border: none;
	cursor: pointer;
}

.social-links {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px 0;
}

.social-links a {
	margin: 0 10px;
	text-decoration: none;
	color: #333;
}

/* For screens smaller than 600px (typical mobile phones) */
@media screen and (max-width: 600px) {
	.construction h1 {
		font-size: 3em; /* Reduce font size for UNDER CONSTRUCTION */
	}

	.progress-bar {
		width: 40%; /* Make the loading bar wider */
	}

	.game-button {
		width: 40%; /* Make the button wider */
	}
}

/* For screens between 600px and 1024px (tablets and small laptops) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
	.construction h1 {
		font-size: 4em;
	}

	.progress-bar {
		width: 30%;
	}

	.game-button {
		width: 20%;
	}
}