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

header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

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

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
}
 /*
 .photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.photo-grid img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  width: 150%;
  max-width: 700px;
  height: auto;
}*/

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.photo-grid figure {
  width: 400px;        /* fixed width */
  height: 400px;       /* fixed height */
  margin: 0;
  text-align: center;
  overflow: hidden;    /* hide overflow from tall images */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.photo-grid img {
  width: 100%;
  height: 500px;        /* controls image height */
  object-fit: cover;    /* crop/scale image to fill the space */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  max-width: 700px;  
}

.photo-grid figcaption {
  padding: 5px 10px;
  font-size: 0.95rem;
}

body {
  background-image: url('bg.png');
  background-size: cover;         /* Scale the image to cover entire background */
  background-repeat: no-repeat;   /* Prevent tiling */
  background-position: center;    /* Center the image */
  opacity: 1;  
}

