/*
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
  --bg: #0d0d0d;
  --text: #39ff14;
  --accent: #39ff14;
  --hovered: #1bb300;
  --glow: 0 0 3px #39ff14, 0 0 8px #39ff14;
  --font-mono: 'Share Tech Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

details {
  margin-bottom: 20px;
  border: 1px solid var(--accent);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
}

summary {
  cursor: pointer;
  font-size: 1.2em;
  color: var(--accent);
  padding-bottom: 5px;
}

summary:hover {
  color: var(--hovered);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  line-height: 1.6;
  padding: 20px;
  text-align: left;
}

.container {
  max-width: 900px;
  margin-left: 0;   Align container to the left 
  margin-right: auto;
}

header {
  text-align: left;  Was center 
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5em;
  color: var(--accent);
  text-shadow: var(--glow);
  letter-spacing: 2px;
  text-align: left;
}

.glitch-text {
  color: var(--text);
  text-shadow: var(--glow);
  font-size: 1.1em;
  animation: glitch 2s infinite;
  text-align: left;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red, -2px 0 blue; }
  25% { text-shadow: -2px 0 red, 2px 0 blue; }
  50% { text-shadow: 2px 0 blue, -2px 0 red; }
  75% { text-shadow: -1px 0 red, 1px 0 blue; }
  100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

nav ul {
  display: block;  Was flex 
  margin-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

nav li {
  margin-bottom: 10px;
}

nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: bold;
  transition: color 0.2s;
}

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

h2 {
  border-bottom: 2px solid var(--accent);
  margin-bottom: 15px;
  padding-bottom: 5px;
  text-align: left;
}

.file-list {
  list-style-type: square;
  margin-left: 20px;
  margin-bottom: 30px;
}

.file-list li {
  margin: 8px 0;
}

.file-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.file-list a:hover {
  color: var(--hovered);
  text-shadow: var(--hovered);
}

footer {
  text-align: left;  Was center 
  margin-top: 50px;
  font-size: 0.9em;
  color: #888;
} 
*/

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
  --bg: #050505;
  --text: #39ff14;
  --accent: #39ff14;
  --hovered: #1bb300;
  --glow: 0 0 3px #39ff14, 0 0 8px #39ff14;
  --font-mono: 'Share Tech Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

details {
  margin-bottom: 20px;
  border: 1px solid var(--accent);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
}

summary {
  cursor: pointer;
  font-size: 1.2em;
  color: var(--accent);
  padding-bottom: 5px;
}

summary:hover {
  color: var(--hovered);
}


body {
  background: url('images/bg.jpg') no-repeat center center fixed ;
  background-size: cover;
  color: var(--text);
  font-family: var(--font-mono);
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: auto;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5em;
  color: var(--accent);
  text-shadow: var(--glow);
  letter-spacing: 2px;
}

.glitch-text {
  color: var(--text);
  text-shadow: var(--glow);
  font-size: 1.1em;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 red, -2px 0 blue; }
  25% { text-shadow: -2px 0 red, 2px 0 blue; }
  50% { text-shadow: 2px 0 blue, -2px 0 red; }
  75% { text-shadow: -1px 0 red, 1px 0 blue; }
  100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

nav ul {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: bold;
  transition: color 0.2s;
}

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

h2 {
  border-bottom: 2px solid var(--accent);
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.file-list {
  list-style-type: square;
  margin-left: 20px;
  margin-bottom: 30px;
}

.file-list li {
  margin: 8px 0;
}

.file-list a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.file-list a:hover {
  color: var(--hovered);
  text-shadow: var(--hovered);
}

footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9em;
  color: #888;
}

