: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.7rem;
  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;
}

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

.profile {
  text-align: center;
  margin: 20px 0;
}

.profile img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

/* Override circle on images with .no-round */
.profile img.no-round {
  border-radius: 0 !important;
}

@media (max-width: 600px) {
  .profile img {
    width: 180px;
    height: 180px;
  }
}

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

/* Fixed Navigation Font Size */
nav a {
  color: #00ff00;
  background-color: #000000;
  margin: 0 0.5rem;
  text-decoration: none;
  border-bottom: 2px dashed #00ff00;
  padding: 0.1rem 0.1rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 2px #00ff00;
  font-size: 1.11rem;
}

header {
  text-align: center;
  padding: 0;
  border-bottom: 0;
}

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

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

/* Navigation styles inside header (you can move this to external CSS too) */
nav, nav * {
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  background: #222;
  padding: 1px 0;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 1px 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #444;
  transform: scale(1.05);
  color: #00ffcc;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1px 0;
  }
  nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1px 1px;
    transform: translateX(-5%);
  }
}
