html {
	height: 100% /* ensure html takes full height */
}

body {
	background-image: url('img/background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0;
	min-height: 100%; /* Full viewport height */
	color: white;
	<!-- color: #1a1a1a; /* Dark gray text for contrast */ -->

	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
}

.navbar {
	background-color: rgba(0, 0, 0, 0.7);
	overflow: hidden;
	padding: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.navbar a {
	color: white;
	text-align: center;
	padding: 14px 20px;
	text-decoration: none;
	font-size: 18px;
}

.navbar a:hover {
	background-color: #ddd;
	color: black;
}

.content {
	padding: 20px;
  flex: 1; /* Allows content to expand and push footer to bottom */
}

<!-- Change link colors
#contact a {
	color: #000000; /* Default link color in About section: black */
}
#contact a:visited {
	color: #ff0000; /* Visited link color in About section: red */
} -->

footer {
	/* background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
	background-color: rgba(0, 0, 0, 0.1);
	padding: 15px;
	text-align: center;
	color: #1a1a1a;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.logo-container img {
	width: 60px; /* Adjust logo size as needed */
	height: auto;
	margin: 0 10px; /* Space between logos */
}

footer p {
	margin: 5px 0;
	font-size: 14px
}
