/* Full-page layout without scrollbars */
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	font-family: Impact, Charcoal, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	max-width: 90%;
	max-height: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

img {
	max-width: 100%;
	max-height: 60vh; /* Prevent image from taking over the entire screen */
	height: auto;
	width: auto;
	object-fit: contain;
}

h1 {
	font-size: 2.5rem;
	margin-top: 1rem;
	color: #000;
}
