body {
    margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center; /* Centers horizontally */
	align-items: center;     /* Centers vertically */
	background-color: #1c1d1c; /* Optional: a light gray background */
}

img {
	max-width: 90%;  /* Prevents the image from overflowing smaller screens */
	max-height: 90vh; /* Prevents the image from overflowing vertically */
	height: 400px;     /* Maintains aspect ratio */
	object-fit: contain;
}