body {
  width: 100%;
  background-color: rgb(0, 55, 108);
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
header {
  background-color: rgb(0, 55, 108);
  padding: 20px;
  text-align: center;
}
main {
  background-color: rgb(0, 55, 108);
  /*min-width: 481px;*/
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}

.image-container {
  display: flex;
  justify-content: space-between; /* Space between the images */
  align-items: center; /* Align images vertically centered */
}
.responsive-image {
  flex: 1; /* Make each image take up equal space */
  max-width: 33%;
  height: auto; /* Maintain aspect ratio */
  /*margin: 0 10px; /* Optional: add some margin between images */
}
.text-container {
  width: 70%;
  margin: 0 auto; /* Center the text horizontally */
  max-width: 100%;
  margin-top: calc(5% + 50px);
}
.photographer-container {
  font-size: 10px;
  position:absolute;
  left: 20px;
}
.logo {
  max-width: 15%;
  height: auto;
  position: absolute;
  right: 10px;
}

h1 {
  /*font-size: 5vw;*/
  font-size: 50px; /* Increase font size for h1 */
  font-weight: bold; /* Make h1 bold */
}
h2 {
  /*font-size: 1.5vw;*/
  font-size: 36px; /* Increase font size for h2 */
  font-weight: bold; /* Make h2 bold */
}
h3 {
  font-size: 24px;
  /*font-size: 36px; /* Increase font size for h3 */
  font-weight: bold; /* Make h3 bold */
}

img {
  vertical-align: middle;

}
nav {
  background-color: rgb(215, 221, 225);
  /*font-size: 1.0vw;*/
  /*text-align: center;*/
  display:flex;  
  justify-content:space-evenly;
  align-items: center;
  padding: 10px 0;
  max-width: 50%;
  min-width: 650px;
  margin: 0 auto;
}
nav a {
  color: rgb(0, 55, 108);
  text-decoration:none;
  font-weight: bold;
  /*padding: 0 5px;*/
}
nav a:hover {
  background-color: rgb(0, 55, 108);
  color: rgb(215, 221, 225);
  border-radius: 0px;
}
@media screen and (max-width: 650px){
  nav {
    background-color: rgb(215, 221, 225);
    /*font-size: 1.0vw;*/
    text-align: center;
    display:block;  
    justify-content:space-evenly;
    align-items:left;
    padding: 10px 0;
    line-height: 1.8;
    /*max-width: 50%;*/
    min-width: 100%;
    margin: 0 auto;
  }    
  nav a {
    color: rgb(0, 55, 108);
    text-decoration:none;
    font-weight: bold;
    padding: 0 5px;
  }
  main{
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
footer {
  text-align: center;
  padding: 20px;            
  margin-top: 200px;
  width: 50%;
  min-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.center-image {
 display: inline-block; /* Ensure the image is treated as an inline element */
}

td {
  padding: 0 15px;
}

.venue_image {
  min-width: 400px;
}

.zebra-table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  width: 90%;
  margin-bottom: 50px;
}

.zebra-table td {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 4px;
  padding-right: 4px;
}

.zebra-table tr:nth-child(even) {
  background-color: rgb(215, 221, 225);
  color: rgb(0, 55, 108);
}

