
.hello {
    opacity: 1 !important;
  }
#gallry{
 position:relative;
 align-items: center;
 height: max-content;
 background: linear-gradient(135deg,  lightblue,rgb(0, 70, 110));
}
  .full {
    position: absolute;
    
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .full .content {
    background-color: rgba(0,0,0,0.75) !important;
    height: 100%;
    width: 100%;
    display: grid;
  }
  .full .content img {
   
    transform: translate3d(0, 0, 0);
    animation: zoomin 1s ease;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
  }
  .byebye {
    opacity: 0;
  }
  .byebye:hover {
    transform: scale(0.2) !important;
  }
  .gallery {
    align-self: center;
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 6px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 0.5fr));
    grid-auto-rows: 8px;
  }
  .gallery img {
    align-items: center;
    max-width: 90%;
    border: 2px solid gold;
    border-radius: 8px;
    box-shadow: 0 0 16px #333;
    transition: all 1.5s ease;
  }
  .gallery img:hover {
    box-shadow: 0 0 32px #333;
  }
  .gallery .content {
    padding: 4px;
  }
  .gallery .gallery-item {
    transition: grid-row-start 300ms linear;
    transition: transform 300ms ease;
    transition: all 0.5s ease;
    cursor: pointer;
    
  }
  .gallery .gallery-item:hover {
    transform: scale(1.025);
  }
  @media (max-width: 600px) {
    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
  }
  @media (max-width: 400px) {
    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    }
  }

  