* {
	margin: 0;
	padding: 0;
}

body {
	background: url('site_background.png') no-repeat center center fixed;
	background-size: cover;
	font-family: 'Fira Code', monospace;
	color: #e0e0e0;
	line-height: 1.65;
	min-height: 100vh;
	position: relative;
}

.banner {
	width: 100%;
	height: auto;
	display: block;
}

nav {
	width: 100%;
	backdrop-filter: blur(4px);
	background: rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid #00ffff33;
}
nav ul {
	display: flex;
	justify-content: center;
	gap: 2rem;
	list-style: none;
	padding: 1rem 0;
}
nav a {
	color: #00ffff;
	text-decoration: none;
	text-shadow: 0 0 6px #00ffff;
	transition: 0.2s ease;
}
nav a:hover {
	color: #ff66cc;
	text-shadow: 0 0 10px #ff66cc;
}

.glow-cyan {
	color: #00ffff;
	text-shadow: 0 0 8px #00ffff;
}

.glow-magenta {
	color: #ff66cc;
	text-shadow: 0 0 8px #ff66cc;
}
.section-title {
	text-align: center;
	margin: 2rem 0 1rem;
	font-size: 1.8rem;
	color: #ff66cc;
	text-shadow: 0 0 8px #ff66cc;
}
.link-neon {
	color: #00ffff;
	text-shadow 0 0 6px #00ffff;
}

.card {
	background: rgba(18, 18, 18, 0.78);
	border: 1px solid #00ffff;
	border-radius: 10px;
	padding: 2rem 2.5rem;	/*	16:9 approximately 2:3.5	*/
	max-width: 37.5%; /* life */
	margin: 3rem auto;
}

.card .section-title {
	margin-top: 0;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 2rem;
	padding: 0 2rem 5.5rem;
}

.project-card {
	background: rgba(18, 18, 18, 0.78);
	border: 1px solid #ff66cc;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 0 15px #ff66cc66;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1rem;
}

.btn {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	border: 1px solid #00ffff;
	border-radius: 6px;
	color: #00ffff;
	text-decoration: none;
	text-shadow: 0 0 6px #00ffff;
	transition: 0.25s ease;
}
.btn:hover {
	background: #00ffff;
	color: #121212;
	box-shadow: 0 0 12px #00ffff;
}

footer {
	text-align: center;
	padding: 3rem 0;
	font-size: 0.75rem;
	color: #888
}

@media (max-width: 600px) {
	nav ul {
		gap: 1rem;
	}
	.card {
		margin: 2rem auto;
		padding: 1.5rem;
		max-width: 70%;
	}
	.section-title {
		font-size: 1.5rem;
	}
}

