		body {
			width: 100%;
			height: 100%;
			background-color: #990000;
			Padding: 6px 6px 6px 6px; /* top right bottom left*/
		}
	
		.logo_image {
			position: absolute;
			display: block;  
			top: 50%;
			left: 50%;
			width: 80%;
			max-width: 1016px;
			min-width: 400px;
			height: auto;
			transform: translate(-50%, -50%); /* Centers the image */
			padding: 0px 0px 0px 0px; /* top right bottom left*/
			background-color: transparent;
		}

		.bottom-banner {
			/* Anchors the div to the browser window (viewport) */
			
			width: 100%;
			height: 80px;
			padding-top: 80px;
			/* Sets the width to 100% of the viewport width */
			
			font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
			/* Centers text horizontally within the div */
			text-align: center;
			font-size: 100px;
			font-weight: bold;
			
			/* Optional: styling for visibility */
			background-color: transparent;
			opacity: 65%;
			color: white;
			
			/* padding: 0px 0px 0px 0px; /* top right bottom left*/
			box-sizing: border-box; /* Ensures padding doesn't add to the 100% width causing overflow */
		}
