body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f8f8f8;
    }

    h1 {
      text-align: center;
      padding: 20px;
      color: #333;
    }

    .gallery {
      max-width: 1200px;
      margin: auto;
      display: flex;
      float: right;
      flex-direction: column;
      gap: 15px;
      padding: 20px;
    }
    
    .row {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .row.one img {
      width: 80%;
      max-height: 80vh; 
    }

    .row.two img {
      width: 40%;
      max-height: 80vh;
    }

    img {
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    img:hover {
      transform: scale(1.03);
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 999999;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(4, 0, 21, 0.9);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    .modal-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
    }

    .modal-nav button {
      background-color: rgba(255, 255, 255, 0.7);
      color: rgb(0, 0, 0);
      font-size: 20px;
      border: none;
      padding: 10px;
      cursor: pointer;
    }

    .modal-nav button:hover {
      background-color: rgba(224, 100, 5, 0.893);
    }
   .goback a{
    text-decoration: none;

   }
   .goback:hover a{
    color: white;
    transition: .6s ease;
   }
   .goback:hover{
    transition: .6s ease;
    background-color: rgb(229, 149, 0);
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.77);
   }
   .goback a svg{
      height: 20px;
      position: absolute;
      left: 6px;
      top: 10px;
   }
   .goback{
    position: fixed;
    left: 6px;
    outline: none;
    font-size: 19px;
    padding: 10px 35px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid rgba(178, 159, 255, 0.77);
    z-index: 99999;
    top: 36px;
    box-shadow: 2px 2px 16px 0px rgba(0, 28, 37, 0.2);
    
   }
    @media screen and (max-width: 768px) {
      .row.one img, .row.two img {
        width: 100% !important;
      }
    }