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

header {
  background-color: rgba(51, 51, 51, 0); /* Add some transparency to the header */
  color: white;
  text-align: left; /* Align text to the left */
  padding: 2em;
  position: relative;
  z-index: 2; /* Increase z-index for the header */
}

header ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-start; /* Align to the left */
  margin: 0;
  padding: 0;
}

header li {
  display: inline;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0; /* Remove default margin */
}

nav ul li {
  display: inline-block; /* Display list items horizontally */
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: white;
}

nav ul li.profile-link {
  float: right;
}

.profile-link {
  margin-left: auto; /* Push it to the right */
}

.logo-img {
  width: 50px;
  height: 50px;
  margin-left: 30px;
  margin-right: 30px;
  float: left;
  position: relative;
  z-index: 3; /* Set a higher z-index to bring the logo to the front */
  margin-top: 20px;
}

.main-container {
  position: relative;
  z-index: 3; /* Increases z-index for the main content */
}

main {
  max-width: 1400px; 
  margin: 0 auto;
}

.background_index {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/talent_show_index.png'); 
  background-size: cover;
  background-position: center;
  filter: blur(0px);
  z-index: 1; /* Sets a lower z-index than the content */
}

h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

/* Apply white text color to the talent show description */
.talent-show-description {
  background-color: rgba(0, 0, 0, 0.7); /* Add a semi-transparent black background */
  color: white;
  text-align: center;
  position: relative;
  z-index: 3; /* Sets a higher z-index to bring it to the front */
  padding: 20px; /* Add padding for better readability */
  margin-left: 600px;
  margin-top: 160px;
}

/* Other Styles */

footer {
  background-color: rgba(51, 51, 51, 0); 
  color: white;
  text-align: center;
  padding: 1em;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 4;
}


