body {
    /* Set the background image */
    background-image: url('GameWall.PNG');
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
    position: relative;
	font-family: Arial, sans-serif;	
}

body::before {
    /* Create the color overlay with transparency */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 139, 34, 0.7); /* Example: black color with 60% transparency */
    z-index: 0;
}

h1 {
	padding-top: 1em;
	margin-left: 1em;
	color: #fff;
}	

/* Ensure content is visible above the overlay */
.container {
    position: relative;
    z-index: 1;
}

#gameFrame { 
	width: 100%; 
	height: 1080px; 
	border: none; 
}

.menu { 
	margin-bottom: 40px;
    margin-left: 2em;	
}

.menu a { 
	padding: 10px; 
	text-decoration: none; 
	border: 1px solid #ddd; 
	border-radius: 5px; 
	color: #333; 
	font-weight: bold;
	background-color: #f9f9f9; 
}

.menu a:hover { 
	background-color: #ff7; 
}