/* Apply a dark theme to the entire website */
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #333;
	color: #fff;
	margin: 0;
	padding: 20px;
}

/* Container for the content */
.container {
	max-width: 800px;
	margin: 0 auto;
	background: #444;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Styling for the page title */
h1 {
	color: #e74c3c; /* Red color for H1 */
	text-align: center;
}

/* Styling for section headers (H2) */
h2 {
	color: #e74c3c; /* Red color for H2 */
	margin-top: 30px;
}

/* Styling for regular text (paragraphs) */
p {
	margin: 10px 0;
}

/* Styling for lists */
ul {
	margin: 10px 0;
	padding-left: 20px;
}

/* Link styling */
a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	color: #e74c3c; /* Red color on hover */
	text-decoration: underline;
}

/* Styling for the 'Back to Website' link */
.back-link {
	position: fixed;
	top: 20px;
	left: 20px;
	color: #e74c3c;
	font-size: 18px;
	text-decoration: none;
}

.back-link:hover {
	color: #fff;
	text-decoration: underline;
}

/* Styling for sections */
.section {
	margin-bottom: 40px;
}
