body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 20px;
  }

  .column {
    flex: 1 1 50%;
    padding: 10px;
    box-sizing: border-box;
    margin-right: 0px; /* Space between columns */
}

/* Optional: Remove margin from the last column to prevent extra space */
.column:last-child {
    margin-right: 0;
}

  h2 {
    color: #333;
    text-align: center;
  }

  img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
    min-height: 10px;
  }

  .caption {
    font-size: 14px;
    color: #666;
    text-align: center;
  }

  .download-link {
    display: block;
    margin: 10px 0;
    font-size: 16px;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
  }

  .carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
  }

  .carousel-item {
    min-width: 100%;
    transition: opacity 1s ease;
  }

  .prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    transform: translateY(-50%);
  }

  .prev {
    left: 0;
    border-radius: 0 5px 5px 0;
  }

  .next {
    right: 0;
    border-radius: 5px 0 0 5px;
  }

  /* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    
    /* Centering with Flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    max-width: 90%;
    max-height: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  /* Add a border around all images */
/* Add a border and spacing around all images */
img {
  border: 5px solid #ccc; /* Border color and thickness */
  border-radius: 20px; /* Optional: rounded corners */
  margin: 20px; /* Adds space between images */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional: shadow for a subtle effect */
}


  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
