body {
	background-color: #222;
	color: #fff;
	font-family: 'Courier New', Courier, monospace;
	margin: 0;
	padding: 0;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	z-index: 1;
	height: 130px; /* reduced header height */
}

nav {
	padding-left: 50px; /* Add padding to move the nav to the left */
}

nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 10;
}

nav li {
	margin: 0 10px;
}

nav a {
	color: #0f0;
	text-decoration: none;
}

h1 {
	font-size: 48px;
	text-align: center;
	margin-top: 100px;
}

.container {
	background-color: #0f0;
	color: #222;
	padding: 50px;
	border-radius: 10px;
	text-align: center;
	margin: 0 auto;
	width: 50%;
	margin-top: 200px;
}

p {
	font-size: 24px;
	margin-bottom: 20px;
	line-height: 1.5;
}  

#social-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

#social-container a {
	margin: 0 10px;
	font-size: 24px;
	color: #0f0;
}

#social-container a:hover {
	color: #fff;
}

footer {
	background-color: #0f0;
	color: #222;
	text-align: center;
	padding: 10px 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

footer p {
	font-size: 16px;
}

/* Font Awesome Icons */
@import url('https://use.fontawesome.com/releases/v5.7.0/css/all.css');
