body, html {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	background-image: url("media/bg.png");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #0a0a0a;
	font-family: sans-serif;
}

.main-container {
	text-align: center;
	padding: 20px;
	border: 1px solid #333;
	border-radius: 8px;
	background-color: #111;
	color: white;
}

.bottom-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: black;
	color: gray;
	text-align: center;
	box-sizing: content-box;
	z-index: 1000;
}