html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	/*background-color: #ffffff;*/
	color: #000000;
	font-family: Arial, sans-serif;

    background-image: url('Background.jpg');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.content {
	flex: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;

	display: flex;
	flex-direction: column;
}

.main-title {
	font-family: "Courier New", Courier, monospace;
	font-size: 2.2em;
	margin: 18px 0 16px;
	letter-spacing: 2px;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.5); 
}

.main-title a {
    text-decoration: none;
    display: inline-block;
}

.logo {
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
}

.banner {
	margin: 20px 0;
}

.banner img {
	border: 3px double #444;
	border-radius: 6px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	transition: transform 0.2s ease;
}

.banner img:hover {
	transform: scale(1.05);
}

.middle {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qrcode img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.footer {
	text-align: center;
	padding: 20px;
}

.logo img {
	max-width: 100%;
	height: auto;
	border: none;
	box-shadow: none;
}
