* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	font-family: 'Open Sans',Helvetica,Arial,sans-serif;
	color: rgb(50,50,150);
}

main {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: calc(100% - 60px); /* Adjusted to leave more space for the footer */
}

img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

footer {
	text-align: center;
	width: 100%;
	font-size: 1rem; /* Increased font size for better visibility */
	color: #666;
	height: 60px; /* Increased height for better prominence */
	line-height: 60px;
}
