body {
  font-family: monospace, sans-serif; /* Monospace for a classic terminal look */
  color: #0f0; /* Bright green for text */
  
  background-color: #000; /* Black background */
  margin: 0;
  padding: 0;
}

header {
  background-color: inherit; /* Inherit black background from body */
  color: inherit; /* Inherit green text from body */
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

nav a {
  color: inherit; /* Inherit green text from body */
  text-decoration: none;
  padding: 10px;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

.hero {
  text-align: center;
}

.hero img {
  max-width: 100%;
}

.about-us p {
  line-height: 1.5;
}

.music,
.get-involved,
.blog {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.music ul,
.get-involved ul,
.blog ul {
  list-style: none;
  padding: 0;
}

.music li,
.get-involved li,
.blog li {
  margin-bottom: 5px;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #222; /* Darker shade of gray for footer */
  color: inherit; /* Inherit green text from body */
}
