/* main body */
body {
  background-color: black;
  color: red;
  font-family: Times, serif;
  text-align: center;
  margin: 0;
  padding-top: 60px; /* space for scrolling banner */
}

/* center all elements inside body */
body * {
  margin-left: auto;
  margin-right: auto;
}

/* Links */
a {
  color: yellow;
  text-decoration: underline; /* restore underlines */
}

a:visited {
  color: yellow;
  text-decoration: underline;
}

a:hover {
  color: #ffcc00;
}

/* Band logo */
.band-logo {
  display: block;
  margin: 20px auto;
  max-width: 2000px;
  width: 40%;
  height: auto;
}

/* Scrolling banner */
.scrolling-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  color: yellow;
  overflow: hidden;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  z-index: 9999;
  padding: 6px 0;
}

/* Scrolling text animation */
.scrolling-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-text 15s linear infinite;
}

@keyframes scroll-text {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Band directory */
.band-directory ul {
  list-style-type: none; /* remove bullets */
  padding: 0;
  margin: 0 auto;
  text-align: center; /* center the items */
}

.band-directory li {
  display: inline-block; /* horizontal layout, can stack vertically if you remove this */
  margin: 0 10px; /* spacing between items */
}

/* Center all other page lists, e.g., music page */
.centered-list {
  list-style-type: none;
  padding: 0;
  margin: 20px auto; /* center the list */
  text-align: center;
}

.centered-list li {
  margin: 10px 0; /* vertical spacing between items */
}
/* make band logo slightly bigger on mobile screens */
@media (max-width: 600px) {
  .band-logo {
    width: 60%;  /* bigger than the default 40% */
  }
}

