
html, body {
    background-color:#3a3a3a;
    height: 100%;
    margin: 0;
    padding: 0;
}

.center-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    height: 100vh;           /* Sets the container height to 100% of the viewport height */
    width: 100vw;            /* Sets the container width to 100% of the viewport width */
}

.center-container img {
    /* Optional: Add responsive styling to the image */
    max-width: 100%;
    max-height: 100%;
    /* Prevents the image from becoming larger than the viewport and causing scrollbars */
}

		.footer {
			position: absolute;
			bottom: 0px;
			color:#737373;
			z-index:1000;
			height: 48px;
			right: 10px;
		}
		