 /* page gallery */
      .gallery1 {
      padding: 10px;
      max-width: 1000px;

    }
    .gallery1 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

      .gallery {
      display: grid;
      grid-template-areas:
        "main right-top"
        "main right-bottom";
      grid-template-columns: 1fr 2fr;
      grid-template-rows: 1fr 1fr;
      gap: 10px;
      padding: 10px;
      max-width: 1000px;
      margin: auto;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

    .main {
      grid-area: main;
    }

     .right-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      grid-area: right-top;
    }

    .right-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      grid-area: right-bottom;
    }