body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  position: relative;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.65);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  text-align: center;
}

.band-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 4em;
  margin: 0 0 0.5em;
}

.band-name .red {
  color: #ff4040;
  text-shadow: 0 0 10px #ff4040;
}

.band-name .white {
  color: white;
  text-shadow: 0 0 10px white;
}

.tagline {
  font-size: 1.25em;
  margin-bottom: 2em;
  max-width: 600px;
}

.buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.2s ease;
}

.spotify {
  background-color: #ff4040;
  color: white;
}

.apple {
  background-color: black;
  color: white;
}

.btn:hover {
  opacity: 0.85;
}