body {
	font-family: Arial, sans-serif;
	background: url('../images/bg.gif') repeat center center fixed;
	background-color: black;
	background-size: 200px, 105px;
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	background-color: #000;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.game-iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px 10px 0 0;
	flex-grow: 1;
}

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url('../images/bg.gif') repeat center center fixed;
	background-color: black;
	border: 2px solid gold;
	padding: 20px;
	text-align: center;
	display: none;
	z-index: 1000;
	border-radius: 10px;
	color: white;
}

.popup button {
	background: grey;
	color: white;
	border: none;
	padding: 10px 20px;
	margin: 10px;
	cursor: pointer;
	border-radius: 5px;
}

.popup button:hover {
	background: #ccc;
}

.main-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
