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 {
	border: 2px solid #ffc700;
	border-radius: 10px;
	width: 80vw;
	background-color: #000;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 75vh;
}

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

.button-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #333;
	border-radius: 0 0 20px 20px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
}

.button-bar button {
	background-color: #000;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	margin: 0 10px;
	padding: 10px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.button-bar button:hover {
	background-color: #ffc700;
	color: #000;
}

.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;
}
