body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.concert-card {
  color: #000; /* force text inside cards to black */
  
}

.concert-card container {
    max-width:400px;
}

.concert-section{
  color:#000;    
}

.concert-section .details{
    text-align: justify;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%; /* Matches the image width */
  max-width: 800px; /* Set a maximum width for larger screens */
  text-align: justify; 
  margin: 20px auto;
}



.centered-image {
  width: auto; /* Allow the image to maintain its natural width */
  max-width: 100%; /* Prevent the image from exceeding container width */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto 20px auto; /* Center the image horizontally */
  display: block; /* Ensure proper centering with margin auto */
}

.show-section {
  margin-top: 40px;
  text-align: center;
}

.show-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left; /* Align list items within the container */
  max-width: 600px; /* Constrain the list width */
}

.show-list li {
  margin: 10px 0;
}

.upcoming-shows li {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

hr {
  border: 0;
  height: 1px;
  background-color: #333;
  margin: 30px 0;
}

h2 {
  margin-bottom: 20px;  
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 90%;
  }

  .show-list {
    max-width: 90%;
    text-align: center; /* Center-align lists on smaller screens */
  }
}

@media (max-width: 576px) {
  .content-wrapper {
    width: 100%;
  }

  .show-list {
    text-align: center;
    max-width: 100%;
  }
}
