

body1 {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
  }
  .gallery {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 800px;
  }
  .image-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 45%;
    transition: transform 0.3s;
  }
  .image-card:hover {
    transform: translateY(-5px);
  }
  .image-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .image-details {
    padding: 15px;
    text-align: center;
  }
  .image-details h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
  }
  .image-details p {
    color: #666;
    font-size: 0.9em;
  }