:root {
  --bg: #000000;
  --link: #0ff;
  --muted: #888;
}

/* Base Styling */
@font-face {
  font-family: 'FreeMono';
  src: url('fonts/FreeMono.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0.99rem;
  font-family: 'FreeMono', monospace;
  font-size: 0.99rem;
  background-color: var(--bg);
  color: white;
  max-width: 1933px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}


h1 {
  color: white;
  font-weight: 600;
  font-size: 1.77rem;
  text-align: center; /* 👈 Header text center-aligned */
}

a {
  color: white;
  text-decoration: underline;
}

.read-more:hover {
  color: black;
  background: cyan;
}

/* 👇 FIXED NAVIGATION FONT SIZE */
nav a {
  color: #00ff00; /* Bright green text */
  background-color: #000000; /* Black background */
  margin: 0 0.5rem;
  text-decoration: none;
  border-bottom: 2px dashed #00ff00; /* Dashed border with green */
  padding: 0.0.0.1rem 0.0.0.1rem; /* Smaller padding to match smaller font */
  transition: all 0.3s ease; /* Smooth transition */
  text-shadow: 0 0 2px #00ff00; /* Minimal glowing effect */
  font-size: 1.11rem; /* Smaller + scales with body font size */
}

header {
  text-align: center; /* 👈 Entire header center-aligned */
  padding: 0rem 0;
  border-bottom: 0px solid #333;
}

footer {
  border-top: 1px solid #333;
  border-bottom: none;
  margin-top: 3rem;
  font-size: 0.6rem;
  color: #fff;
}

.banner1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* fixed valid value */
  justify-content: flex-start;
  text-align: left;
  margin: 0rem auto;
  padding: 0rem;
  max-width: 100%;
  width: 90vw;
  background-color: transparent;
  color: #00ff00;
}