/* Base styling */
body {
  background-color: #444B47;   /* earthy muted green-gray */
  color: #e0e0e0;              /* light text for contrast */
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Container to center content in upper middle */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal centering */
  justify-content: flex-start; /* keep content toward top */
  min-height: 100vh;
  padding-top: 60px;        /* breathing space from very top */
  text-align: center;
}

/* Headings */
h1 {
  color: #c0ffb3;           /* soft neon green accent */
  font-size: 3em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

h2 {
  color: #c0ffb3;
  margin-bottom: 15px;
  font-size: 1.5em;
}

/* Tagline */
p {
  margin: 5px 0 20px 0;
  font-style: italic;
  color: #d9d9d9;
}

/* Navigation */
nav {
  margin: 20px 0 40px 0;
}

nav a {
  color: #c0ffb3;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #c0ffb3;
}

/* Sections */
section {
  background-color: rgba(255, 255, 255, 0.05); /* subtle overlay for structure */
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  max-width: 700px;
}

/* Lists */
ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 8px 0;
  font-style: italic;
}

/* Audio player */
audio {
  display: block;
  margin: 20px auto;
  border: 2px solid #c0ffb3;
  border-radius: 6px;
}

/* Password page styles */
input[type="password"] {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #c0ffb3;
  border-radius: 6px;
  background-color: #2f3834;
  color: #e0e0e0;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin-left: 10px;
  background-color: #c0ffb3;
  color: #444B47;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}