body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url('https://music-site-55hhttt77ss.s3.amazonaws.com/images/background.JPG') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

header {
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
  padding: 1em 0;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  padding: 100px 20px 20px; /* Add padding to prevent content from being hidden behind the fixed header */
}

main.center {
  text-align: center; /* Center-align the text */
}

main.contact-center {
  text-align: center; /* Center-align the text */
}

.biography {
  display: flex;
  align-items: flex-start;
}

.biography p {
  flex: 1;
  margin-right: 20px;
  text-align: left;
  padding-left: 5ch;
}

.headshot {
  width: 750px; /* Set the width to match the default video preview size */
  height: 500px; /* Maintain aspect ratio */
  border-radius: 5px;
  position: right;
  margin: 0 0 10px 10px;
}

.performance {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  color: #333;
  text-align: left; /* Ensure the performance blocks are left-aligned */
}

.performance h3 {
  margin-top: 0;
}

.performance img {
  width: 240px; /* Set the width to match the default video preview size */
  height: 280px; /* Maintain aspect ratio */
  border-radius: 5px;
  display: block;
  margin-top: 10px;
}

.gallery, .videos {
  display: flex;
  flex-wrap: wrap;
}

.photo, .video {
  border: 2px solid darkgreen;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}

.videos video, .performance video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.gallery img {
  height: auto;
  width: 300px;
}

.videos video, .performance video {
  width: 320px; /* Set the width to a default video preview size */
  height: 180px; /* Maintain aspect ratio */
}

.caption {
  margin-top: 5px;
  font-size: 0.9em;
  color: #333;
}

footer {
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
  text-align: center;
  padding: 2px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1000;
}

a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  transition: color 0.3s, border-bottom-color 0.3s;
}

a:hover {
  color: #ccc;
  border-bottom-color: #ccc;
}
