body {
  background-color: #0b0b0b;
  color: #fff;
  font-family: 'Bangers', cursive;
  margin: 0;
  padding: 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: radial-gradient(circle at center, #ff0048, #050505);
}

.logo {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 6px #fff);
}

.site-title {
  font-size: 1.5em;
  color: #00ffff;
  font-family: 'Press Start 2P', cursive;
  text-shadow: 1px 1px #ff0048;
}

.hero-image {
  text-align: center;
  background-color: #111;
  padding: 2em 0;
}

.band-photo.full {
  width: 95%;
  max-width: 1000px;
  border: 3px solid #00ffff;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff0048;
}

.content {
  padding: 2em;
  text-align: center;
}

.intro {
  font-size: 1.2em;
  max-width: 700px;
  margin: 2em auto;
  line-height: 1.6;
}

.contact {
  margin-top: 3em;
}

.contact h2 {
  font-size: 2em;
  color: #ff0048;
}

.contact a {
  color: #00ffff;
  text-decoration: none;
  font-size: 1.2em;
  display: block;
  margin: 0.3em 0;
}

.contact a:hover {
  text-decoration: underline;
}

.social a {
  display: inline-block;
  margin: 0.5em 1em;
  font-size: 1.4em;
}

footer {
  background-color: #111;
  color: #777;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
}