/* Base styling */
body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #050505;
  color: #e5e5e5;
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
nav {
  background-color: #000;
  padding: 16px;
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #222;
}

nav a {
  color: #e5e5e5;       /* Solid link color */
  text-decoration: none;
  font-size: 18px;
}

nav a:hover,
nav a:visited,
nav a:active,
nav a:focus,
nav a.active {
  color: #e5e5e5;       /* Keep the same color in all states */
  text-decoration: none;
}

/* Main content */
main {
  flex: 1;
  max-width: 700px;
  margin: auto;
  padding: 60px 20px;
}

/* Headers */
h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Story paragraphs */
p {
  font-size: 18px;
  margin-bottom: 22px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #777;
  border-top: 1px solid #222;
  background-color: #000;
}

/* Story list links on Stories page */
ul li a {
  color: #e5e5e5;
  text-decoration: none;
}

ul li a:hover,
ul li a:visited,
ul li a:active,
ul li a:focus {
  color: #e5e5e5;
  text-decoration: none;
}
