.nav {
  background-color: #333; /* Dark Gray */
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: #fff; /* White */
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}
  
/* Write Story Section */
.write-story {
  background: #FFF;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  border: 1px solid #4A3728;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.write-story input[type="text"],
.write-story textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #4A3728;
  border-radius: 5px;
  font-family: 'Merriweather', Georgia, serif;
  background: #F8F1E9;
  color: #333;
}

.write-story textarea {
  min-height: 1500px;
  resize: vertical;
}

.write-story label {
  color: #555;
  margin: 10px 0;
  display: block;
}

.write-story button {
  margin: 10px 0;
  padding: 8px 16px;
  background: #355E3B;
  color: #F8F1E9;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Merriweather', Georgia, serif;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.write-story button:hover,
.write-story button:focus {
  background-color: #4A3728;
}

/* Write Story Header */
.write-story-header {
  background: #4A3728;
  color: #F8F1E9;
  padding: 10px;
  border-bottom: 1px solid #4A3728;
  border-radius: 5px 5px 0 0;
}

.write-story-header h2 {
  font-size: 1.5em;
  margin: 0;
}

/* Write Story Footer */
.write-story-footer {
  background: #4A3728;
  color: #F8F1E9;
  padding: 10px;
  border-top: 1px solid #4A3728;
  border-radius: 0 0 5px 5px;
}

.write-story-footer p {
  font-size: 1.2em;
  margin: 0;
}