
/* Set a nice orange background */
body {
	background-color: #FFA500; /* Orange color */
	display: flex;
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	height: 100vh; /* Full viewport height */
	margin: 0; /* Remove default margin */
	font-family: Arial, sans-serif; /* Set a simple font */
}

/* Container for the logo */
.logo-container {
	text-align: center;
}

.logo-container img {
	width: 300px; /* Adjust size */
	height: auto;
}
