/* Reset margins and paddings */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
}

/* Navbar styling */
.navbar {
	background-color: #3498db;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 900;
}

.navbar a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}

.navbar a:hover {
	text-decoration: underline;
}

.title {
	display: flex;
	justify-content: center;
	padding: 5rem 0;
	color: #3498db;
	font-size: 35px;
}

.game-container {
	display: flex;
	justify-content: center;
}

.game-content {
	height: 821px;
	width: 1120px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.video-ad-wrapper {
	width: 100%;
	height: 100%;
	background-color: #a6c3d6;
	position: relative;
}

.game-title {
	position: absolute;
	top: 50%; /* Adjusts positioning from the top */
	left: 50%;
	transform: translateX(-50%); /* Centers horizontally */
	text-align: center;
	margin: 0; /* Removes any default margins */
	font-size: 40px;
	color: white;
	font-weight: 900;
}

.video-ad {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#precontent-video-location {
	width: 100%;
	height: 100%;
}
