body {
  background-color: red;
  font-family: 'Courier New', Courier, monospace;
  color: yellow;
  margin: 0;
  padding: 0;
  text-align: center;
}

.site-title {
  font-size: 48px;
  margin-top: 30px;
  text-shadow: 2px 2px black;
}

.collage-frame {
  overflow-x: auto;
  white-space: nowrap;
  margin: 20px 0;
  padding: 10px;
  border-top: 3px solid yellow;
  border-bottom: 3px solid yellow;
}

.collage-row {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 10px;
}

.collage-img {
  width: 150px;
  height: auto;
  border: 2px solid yellow;
  box-shadow: 3px 3px black;
  transform: rotate(calc(-5deg + 10deg * random()));
}

.post-list h2 {
  color: rgb(25, 0, 255);
}

.post-list ul {
  list-style-type: none;
  padding: 0;
}

.post-list li {
  margin: 10px 0;
}

.post-list a {
  color: lime;
  font-size: 20px;
  text-decoration: none;
}

.post-list a:hover {
  text-decoration: underline;
}

.post-heading {
  font-size: 2rem;
  color: #311aff; /* navy/indigo blue */
  margin-top: 40px;
  text-align: center;
}


.neon-link {
  color: #39ff14; /* neon green */
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  text-shadow: 0 0 8px #39ff14, 0 0 16px #39ff14;
}

.neon-link:hover {
  color: #00ff00;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

.blog-post {
  max-width: 750px;
  margin: 40px auto;
  padding: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,255,0,0.1);
}

.blog-post {
  background-color: #1a1a1a; /* dark grey */
  color: #f5f5f5; /* soft white text */
  font-family: 'Courier New', Courier, monospace;
  padding: 40px;
  line-height: 1.6;
}

.post-container {
  max-width: 800px;
  margin: 0 auto;
}

.back-home {
  display: inline-block;
  margin: 20px;
  font-size: 1.2rem;
  color: #00ffff; /* Cyan neon */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-home:hover {
  color: #ff00ff; /* Magenta on hover */
}

body.post-page {
  background-color: #000; /* or any color you want */
}
