:root {
	--primary-color: #00ff50;
	--bg-dark: black;
	--border-color: #333;
	--font-main: 'Monospace', Monospace, monospace;
	--font-space: 'Monospace', sans-serif;
}

html { scroll-behavior: smooth; }

body {
	margin: 30px;
	font-family: var(--font-main);
	background-color: var(--bg-dark);
	color: #e0e0e0;
	line-height: 1.8;
	padding-top: 45px;
	position: relative;
	overflow-x: hidden;
}

a {
  color: #a0f0a0;
}

a:hover {
  font-weight: bold;
}

nav {
	position: fixed;
	top: 0; left: 0; width: 100%;
	background: #000;
	border-bottom: 1px solid var(--primary-color);
	z-index: 1000;
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

nav a {
	font-family: var(--font-space);
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	font-size: 1.2rem;
	/*font-weight: bold;*/
	text-transform: uppercase;
	transition: 0.7s;
}

nav a:hover { color: var(--primary-color); }

h1, h2, h3 {
	font-family: var(--font-space);
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 1px solid var(--primary-color);
	display: inline-block;
	margin-bottom: 20px;
}

header {
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
	border-bottom: 3px solid var(--primary-color);
	padding: 30px 0 40px 0;
	text-align: center;
}

img {
	transition: transform 0.3s ease;
}
img:hover {
	transform: scale(1.1);
	z-index: 10;
}

.email-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
	border-bottom: 1px solid var(--primary-color);
	padding: 2px 5px;
	transition: 0.3s;
}

.email-link:hover {
	background: var(--primary-color);
	color: #000;
}

.faq-question {
	font-family: var(--font-space);
	font-weight: bold;
	color: #f0f000;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 5px;
}

.logged-user {
    margin-left: auto;
    margin-right: 0;
    float: right;
}


footer {
	text-align: center;
	padding: 40px;
	border-top: 1px solid var(--border-color);
	background: rgba(0,0,0,0.8);
	font-family: var(--font-space);
}
