<style>
html, body {
    font-family: 'Roboto', sans-serif;
    background-color: #000 !important; /* Force Black Background */
    color: #f4f4f9;
    margin: 0;
    padding: 0;
}
	header {
		background-color: #000;
		color: #fff;
		padding: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 3px solid gold;
	}
	header h1 {
		margin: 0;
		font-size: 1.8em;
	}
	nav ul {
		list-style: none;
		display: flex;
		gap: 15px;
		margin: 0;
		padding: 0;
	}
	nav ul li a {
		color: #fff;
		text-decoration: none;
		font-weight: bold;
	}
	nav ul li a:hover {
		color: blue;
	}
	.container {
		background-color: transparent !important; /* Force Transparent Background */
		display: flex;
		padding: 20px;
	}
	.left-column, .right-column {
		width: 25%;
		background-color: #101E30 !important; /* Keep side panels navy blue */
		color: #fff;
		padding: 20px;
		border-radius: 8px;
	}
	.main-content {
		background-color: transparent !important; /* Force Transparent Background */
		width: 50%;
		padding: 0 20px;
	}
	.gallery {
		position: relative;
		max-width: 100%;
		margin-bottom: 20px;
	}
	/*.gallery img {
		width: 30%; *//* Adjust this percentage to resize your images */
 	/*   margin: 0 auto;
		display: none;
		border-radius: 8px;
	}*/
	.gallery img {
		width: 80%;
		height: 250px;
		object-fit: contain;
		margin: 0 auto;
		display: none;
		border-radius: 8px;
	}
	.children-links {
		display: flex;
		justify-content: space-around;
		margin-top: 20px;
	}
	.child-section img {
		width: 100%;
		height: 150px;
		object-fit: cover;
		width: 100%;
		border-radius: 8px;
	}
	footer {
		background-color: #000;
		color: #fff;
		text-align: center;
		padding: 10px;
		margin-top: 20px;
		border-top: 3px solid gold;
	}
	.auth-buttons button {
		background-color: gold;
		color: #000;
		border: none;
		padding: 8px 16px;
		margin-left: 10px;
		border-radius: 5px;
		font-weight: bold;
		cursor: pointer;
		transition: 0.3s ease;
	  }
	  
	  .auth-buttons button:hover {
		background-color: #fff;
	  }
	  
</style>