body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.artist-speakers-page {
  width: 100%;
  margin-top: 60px;
  height: calc(100vh - 120px); /* Leave space for top & bottom fixed areas */
  box-sizing: border-box;
  background-image: url('Images/bg.png');
  background-repeat: repeat;
  background-size: cover;
  text-align: center;
  /* padding: 3rem 1rem; */
  padding-top: 4rem ;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  /* overflow: hidden; */
}

.artist-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4vh;
  width: 100%;
}

.artist-icon {
  width: 40vw;
  max-width: 100px;
  height: auto;
}

.heading-image {
  width: 60vw;
  max-width: 600px;
  height: auto;
}

.speaker-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* was start */
  flex-grow: 1;
  height: auto;
  width: 100%;
}

.speaker-img {
  height: 50vh;
  width: auto;
  object-fit: contain;
}

.speaker-name-strip {
  height: 60px;
  background-color: black;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.name-strip-img {
  height: 70%;
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .heading-image {
    width: 60vw;
  }
.artist-speakers-page {
  height: auto; /* Leave space for top & bottom fixed areas */
background-size: 200% auto;
}
.speaker-img {
  height: 20vh;
  width: auto;
  object-fit: contain;
}
  .artist-icon {
    width: 12vw;
  }

  .name-strip-img {
    max-height: 50px;
  }
}
