
body {
	font-family: 'Lucida Console', sans-serif;
	background-color: #1f1f1f;
	color: #eee;
	/* margin: 10px; */
	padding: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	
}

h1, h2, h3, h4, h5, h6 {
	color: #3498db;
	margin-bottom: 10px;
}

h1{margin-top:0}

a {
	color: #3498db;
	text-decoration: none;
	border-bottom: 1px dashed #3498db;
	transition: border-bottom 0.3s ease-in-out;
}

a:hover {
	border-bottom: 1px solid #3498db;
}

p {
	margin-bottom: 15px;
}

ul, ol {
	margin-bottom: 15px;
	padding-left: 20px;
}

li {
	margin-bottom: 5px;
}

blockquote {
	border-left: 3px solid #3498db;
	margin: 0;
	padding-left: 15px;
	font-style: italic;
	color: #ccc;
}

img {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

header, nav, main, footer, form {
	margin-bottom: 20px;
}

nav ul {
	list-style-type: none;
	padding: 0;
	display: flex;
}

nav li {
	margin-right: 20px;
}

footer {
	text-align: center;
	font-size: 0.8em;
	color: #777;
}

/* Form Styles */
form {
	display: grid;
	gap: 10px;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #aaa;
}

input,
textarea,
select {
	width: 100%;
	padding: 10px;
	border: 1px solid #444;
	border-radius: 4px;
	box-sizing: border-box;
	background-color: #333;
	color: #eee;
}

/* Table Styles */
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 15px;
}

th, td {
	border: 1px solid #555;
	padding: 10px;
	text-align: left;
}

th {
	background-color: #444;
}

caption {
	font-weight: bold;
	margin-bottom: 10px;
	color: #ccc;
}

button {
	font-family:'Lucida Console'
}