body {
  background-color: #111111;
  color: #00ff00; /* retro green terminal text */
  font-family: "Courier New", Courier, monospace;

}

main {
  background-color: transparent;
  border-top: 4px solid #33ff33;
  color: #33ff33;
  padding: 2rem;
  text-align: center;
}

.forum-container {
  background-color: transparent;
  border: 3px solid #00ff00;
  margin: 20px auto;
  max-width: 800px;
  padding: 15px;
  width: 70%;
}

header {
  background: #1a1a1a;
  border-bottom: 4px solid #33ff33;
  color: #33ff33;
  font-family: "Press Start 2P", monospace;
  padding: 4rem 1rem 1rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

header h1 {
  font-family: "Press Start 2P", monospace;
  font-size: 1.25rem;
  margin-top: 1.25rem;
  text-shadow: 2px 2px 0 #000;
}

nav {
  display: flex;
  font-family: "Press Start 2P", monospace;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}

nav a {
  background-color: #cc66ff;
  border: 4px solid #33ff33;
  box-shadow: 2px 2px #000;
  color: #33ff33;
  font-family: "Press Start 2P", monospace;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

@keyframes glitch {
  0% {
    text-shadow: 0 0 5px #ff0000;
  }
  50% {
    text-shadow: 0 0 5px #00ff00;
  }
  100% {
    text-shadow: 0 0 5px #0000ff;
  }
}

.post {
  background-color: #0f0f0f;
  border: 2px solid #00ff00;
  margin-bottom: 20px;
  padding: 10px;
}

.post-header,
.post-footer {
  border-bottom: 1px dashed #00ff00;
  padding-bottom: 5px;
}

.issues ul,
.post-footer ul {
  list-style-type: none;
  padding-left: 10px;
}

.issues li::before,
.post-footer li::before {
  color: #00ff00;
  content: "> "; /* Looks command-line-ish */
}

@media (max-width: 600px) {
  nav {
    background: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.5rem;
  }

  nav a {
    align-items: center;
    display: flex;
    font-size: 0;
    justify-content: center;
    min-width: 3rem;
    padding: 0.5rem;
    position: relative;
  }

  nav a::after {
    content: attr(data-label);
    display: inline-block;
    font-size: 2rem;
  }
}
