/* Basic Reset and Styling */

body {
	font-family: Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	background-color: #f4f4f4;
	color: #333;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	background-color: DarkSlateGray;
	color: #fff;
	padding: 15px;
	text-align: center;
}

header h1 { margin: 0; }
nav { margin-top: 10px; }

nav a {
	color: #fff;
	margin: 0 15px;
	text-decoration: none;
	font-weight: bold;
}

nav a:hover { text-decoration: underline; }

.container {
	max-width: 1000px;
	margin: auto;
	padding: 20px;
	flex: 1;
}

section { margin-bottom: 40px; }

h2 {
	color: DarkSlateGray;
	border-bottom: 2px solid #ccc;
	padding-bottom: 5px;
}

/* Footer styling */
footer {
	background-color: DarkSlateGray;
	color: #fff;
	padding: 20px;
	position: relative;
}

.footer-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.right {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.bib-block {
	font-family: monospace;
	white-space: pre-wrap;
	padding: 10px;
	margin-top: 10px;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
}

/* Responsive adjustments */
@media(max-width: 600px) {
	nav a {
		display: block;
		margin: 10px 0;
	}
}
