/* General Styles */
body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	background-color: #222; /* Dark background */
	color: #fff; /* White text */
}

/* Centering Content */
.container {
	max-width: 800px; /* Adjust as needed */
	margin: 0 auto; /* Center horizontally */
}

/* Header Styles */
header {
	background-color: #333; /* Slightly darker header background */
	padding: 20px;
	text-align: center;
}

h1 {
	color: #fff; /* White header title */
}

/* Main Content Styles */
main {
	padding: 20px;
}

section {
	margin-bottom: 20px;
}

h2 {
	color: #fff; /* White section headings */
}

ul {
	list-style: none;
	padding: 0;
}

li {
	margin-bottom: 10px;
}

a {
	color: #fff; /* White links */
	text-decoration: none;
}

/* Footer Styles */
footer {
	background-color: #333;
	padding: 20px;
	text-align: center;
}
