* { margin: 0; padding: 0;}

body, html { height:100%; }
body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 70px 0 0;
	background-color: #f4f4f4;
	color: #333;
}

nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: #333;
	padding: 10px 20;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
nav .menu-button {
	display: none;
	background-color: transparent;
	color: white;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

}

nav ul li {
	margin: 0 15px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: #4CAF50;
}
nav a {
	text-decoration: none;
	color: white;
	font-size: 18px;
}

/* Mobile View */
@media (max-width: 600px) {
	nav .menu-button {
		display: block;
	}

	nav ul {
		display: none;
		flex-direction: column;
		align-items: center;
		background-color: #333;
	}

	nav ul.show {
		display: flex;
	}

	nav li {
		margin: 10px 0;
	}
}
.container {
	z-index : 1 ;
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
}

.section {
	background: white;
	border-radius: 10px;
	margin-bottom: 25px;
	padding: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
}

h1, h2, h3 {
	color: #333;
}

h1 {
	margin-bottom: 10px;
}

h2 {
	margin-top: 0;
	border-bottom: 2px solid #4CAF50;
	padding-bottom: 10px;
}

.contact-info {
	margin-bottom: 20px;
	text-align: center;
}

.contact-info p {
	margin: 8px 0;
}

.section table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
}

.section table td {
	padding: 12px;
	vertical-align: top;
	/* border-bottom: 1px solid #eee; */
}

.highlight {
	color: #4CAF50;
	font-weight: bold;
}

.left-column {
	flex: 1;
	padding-right: 20px; /* Optional: Adds some space between the columns */
}

.ascii-art {
	font-family: monospace;
	white-space: pre;
	margin: 0;
}
.vertical-table {
	width: 100%;
	border-collapse: collapse;
}

.vertical-table th,
.vertical-table td {
	border: 0px solid #ddd;
	padding: 5px;
	text-align: left;
}

.vertical-table th {
	background-color: #f4f4f4;
	font-size: 1.2em; /* Larger font size for headers */
}

.vertical-table ul {
	margin: 0;
	padding-left: 20px;
}

.vertical-table ul li {
	list-style-type: disc;
}
.dashed-line {
	border-top: 2px dashed #4CAF50; /* Green dashed line */
	margin: 10px 0; /* Add some vertical spacing */
}

.vertical-table .spacer td {
	border: none; /* Remove borders for the spacer row */
	padding: 0; /* Remove padding for the spacer row */
}

/* Flexbox container to align left and right columns */
header {
	display: flex;
	align-items: center; /* Vertically center align items */
	justify-content: space-between; /* Space between left and right columns */
}

/* Left column styling */
.left-column {
	flex: 1; /* Allow left column to take available space */
}

/* Right column styling */
.right-column {
	flex-shrink: 0; /* Prevent right column from shrinking */
}

/* ASCII art styling */
.ascii-art {
	margin: 0; /* Remove default margin */
	font-family: monospace; /* Use monospace font for ASCII art */
	white-space: pre; /* Preserve whitespace and line breaks */
}

/* Contact info styling */
.contact-info p {
	margin: 5px 0; /* Add spacing between contact info lines */
}
/* Default light theme */
:root {
	--bg-color: #ffffff;
	--text-color: #333333;
	--heading-color: #222222;
	--link-color: #1a0dab;
	--link-hover-color: #0a0080;
	--card-bg: #f8f9fa;
	color-scheme: light dark;
}

/* Dark theme override */
@media (prefers-color-scheme: dark) {
	:root {
		--bg-color: #1a1a1a;
		--text-color: #e0e0e0;
		--heading-color: #ffffff;
		--link-color: #9db4ff;
		--link-hover-color: #6c8cff;
		--card-bg: #2d2d2d;
		color-scheme: dark;
	}

	/* Optional: Reduce brightness of images in dark mode */
	img {
		opacity: 0.9;
		transition: opacity 0.3s ease;
	}
}

/* Apply theme variables */
body {
	background-color: var(--bg-color);
	color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--heading-color);
}

a {
	color: var(--link-color);
}

a:hover {
	color: var(--link-hover-color);
}

/* If you have cards or sections with background */
.card, .section {
	background-color: var(--card-bg);
	transition: background-color 0.3s ease;
}

/* Optional: Better scrollbar styling */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
	background: #555555;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #777777;
}

/* Remove default margins and padding */
{
	margin: 0;
	padding: 0;
	overflow: hidden; /* Prevent scrollbars */
}
/* Canvas styling */
#mainCanvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1; /* Lower z-index for background */
}
