/* Navigation */
.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;
}

.nav-link:hover,
.nav-link:focus {
  background-color: #555; /* Darker Gray */
}

/* Welcome Section */
.welcome {
  text-align: center;
  padding: 40px 20px;
}

.welcome h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.welcome p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.7;
}

/* Story Page */
.story-page {
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  border: 1px solid #4A3728;
}

.story-page h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.story-page p {
  font-size: 1.2em;
  color: #666;
  line-height: 1.7;
}

.story-page img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #4A3728;
  color: #fff;
  padding: 20px;
  text-align: center;
  clear: both;
}

footer p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover,
footer a:focus {
  color: #ccc;
}

/* Add the fancy button CSS here */
.fancy-button {
  background-color: #4CAF50; /* green background */
  color: #fff; /* white text */
  padding: 10px 20px; /* add some padding */
  border: none; /* remove default border */
  border-radius: 5px; /* rounded corners */
  cursor: pointer; /* change cursor on hover */
  transition: background-color 0.3s ease; /* smooth transition on hover */
}

.fancy-button:hover {
  background-color: #3e8e41; /* darker green on hover */
}

.fancy-button:focus {
  outline: none; /* remove default focus outline */
  box-shadow: 0 0 5px #4CAF50; /* add a green glow on focus */
}