/*
  Use the following to include this css file
  <link rel="stylesheet" href="styles3.css" />
*/
h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
:root {
  --bg-color: #0d1117;       
  --terminal-green: #33ff33; 
  --retro-amber: #ffb000;    
  --cyber-blue: #00f0ff;     
  --font-mono: 'Courier New', Courier, monospace;
}
body {
  background-color: var(--bg-color);
  color: var(--terminal-green);
  font-family: var(--font-mono);
  padding: 20px;
}

/
h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

h1::before {
  content: "> "; 
  color: var(--cyber-blue);
}
body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 10;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none; 
}
img {
  border: 4px solid var(--terminal-green);
  box-shadow: 0 0 15px var(--terminal-green);
  border-radius: 0px; 
}
