/* === BODY === */
body {
  font-family: "JetBrains Mono", monospace; /* Retro terminal font */
  background-color: #0A0A0A; /* Dark background */
  color: #FF9A10; /* Neon green text */
  line-height: 1.6;
  font-size: 1rem;
  max-width: 750px;
  margin: auto;
  padding: 2rem;
}

h1, h2, h3 {
    color: #FF9A10;
    text-shadow: 0 0 8px #FE9A5C;
    font-weight: 600;
}


/* CRT SCANLINE */ 
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    rgba(0, 0, 0, 0) 0px, 
    rgba(0, 0, 0, 0.05) 2px, 
    rgba(0, 0, 0, 0.1) 4px
  );
  z-index: 999;
}

/* === NAVBAR === */
nav {
  border-left: 3px solid #FE9A5C; /* Neon left border */
  margin-bottom: 2rem;
  padding-left: 1rem;
}

nav a {
  color: #FF9A10; /* Blue link */
  text-decoration: none; /* No underline */
  font-weight: 500;
  margin-right: 1rem;
}

nav a:hover {
  text-shadow: 0 0 8px #FE9A5C; /* Glowing effect on hover */
}

/* === CONTAINER FOR TEXT BOXES === */
.box {
  border: 1px solid #FE9A5C;
  padding: 1rem;
  margin: 2rem 0;
  background: rgba(23, 8, 7, 1); /* Subtle background color */
}

.box h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.word-count {
  font-size: 0.9em;
  color: #FF9A10;
  text-align: right;
}


/* === IMAGES === */
 .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    width: 100%;
}

.photo-grid .box {
    margin: 0; 
    padding: 0;
    border: 1px solid #FE9A5C;
    text-align: center;
}

.photo-grid img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* === LINKS === */
a {
  color: #FE9A5C;
  text-shadow: 0 0 8px #FE9A5C;
}

/* Optional subtle flicker animation */
@keyframes flicker {
  0% { opacity: 1; }
  99% { opacity: 1; }
  100% { opacity: 0.97; }
}

body { animation: flicker 0.15s infinite; } /* Flicker effect */
 <style>
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #FF9A10;
  text-align: center;
}
</style>

<div class="footer">
  <p>© 2025 yourname <p>
</div> 
