/* This is a CSS override! It overrides default values for ALL elements. */
/* I highly recommend keeping this override in your code. */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	background-color: #000000;
	color: #00FF00;
	font-family: "Courier New", monospace;
}

h1 {
	margin: 20px;
	color: #00FF00;
	text-align: center;
	text-transform: uppercase;
}

h2 {
	margin: 20px;
	color: #00FF00;
}

p {
	margin: 20px;
	color: #00FF00;
}

ul {
	margin: 20px;
	color: #00FF00;
}

li {
	margin: 20px;
	color: #00FF00;
}

#container {
	width: 800px;
	margin: 0 auto;
	padding: 20px;
	border: 3px solid #00FF00;
	background: rgba(0, 0, 0, 0.9);
}


.box {
	padding: 10px;
	border: 2px solid #00FF00;
	background: #003300;
	margin: 10px 0;
}

a {
	color: #00FF00;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.hacker-metrics {
	font-size: 12px;
	color: #00FF00;
	position: fixed;
	top: 10px;
	right: 10px;
	text-align: right;
	animation: flicker 1s infinite alternate;
}

@keyframes flicker {
	0% { opacity: 1; }
	100% { opacity: 0.5; }
}

.scanline {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		to bottom,
		rgba(0, 255, 0, 0.1),
		rgba(0, 255, 0, 0.1) 1px,
		transparent 2px,
		transparent 4px
	);
	pointer-events: none;
}

nav {
    position: fixed;
    top: 10px;
    left: 10px;
    text-align: left;
    font-size: 20px;
    color: #00FF00;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border: 2px solid #00FF00;
    animation: flicker 1s infinite alternate;
}

nav a {
    color: #00FF00;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}