/* Basic Reset */
body, h1, main {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Styling for the body and overall page */
body {
	background-color: white;
	font-family: Arial, sans-serif;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh; /* Use full height of the viewport */
	text-align: center;
}

/* Main content area */
main {
	max-width: 90%;
}

/* Accessibility considerations */
h1 {
	font-size: 2em; /* 2em default size for large text */
}
