/* Early 2000s Writing Archive Style */
body {
  background-image: url('SpaceBG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  color: #dddddd;
  margin: 0;
  padding: 0;
}

nav.dashboard {
  background-color: rgba(20, 0, 30, 0.85);
  text-align: center;
  padding: 12px;
  border-bottom: 2px dashed #9900cc;
  box-shadow: 0 0 10px #9900cc;
}

nav.dashboard a {
  color: #ffccff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  font-size: 16px;
}

nav.dashboard a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #ff00ff;
}

h1 {
  color: #ff99ff;
  text-align: center;
  text-shadow: 2px 2px 5px #000000;
  border-bottom: 2px dashed #ff00ff;
  padding-bottom: 10px;
  margin-top: 40px;
}

.writing-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid #cc33ff;
  box-shadow: 0 0 20px #cc33ff;
}

.writing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.writing-item {
  padding: 15px;
  background-color: rgba(25, 0, 35, 0.85);
  border: 2px solid #660066;
  box-shadow: 0 0 10px #660066;
  transition: box-shadow 0.3s ease;
}

.writing-item:hover {
  box-shadow: 0 0 15px #ff00ff;
}

.writing-item a {
  color: #ffccff;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
}

.writing-item a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #ff00ff;
}

.writing-description {
  font-size: 14px;
  color: #bbbbbb;
  margin-top: 6px;
}

footer {
  text-align: center;
  font-size: 12px;
  padding: 20px;
  color: #999;
}
