.sign {
  justify-content: center;
  text-align: center;
  /* text-justify: ; */
  padding-top: 1rem;
  font-size: 1.5rem;
}

.parent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.gallery__item {
    padding: 1rem;
    margin-right: 1em;
    /* width: 30%; */
    /* height: 100%; */
}
.gallery__item:nth-child(5n+2) {
    margin-right: 5em;
}

.gallery__item > p {
  padding: 1rem;
}


.gallery__item img{
    width: 150px;
    /* margin-right: 2em; */
    object-fit: cover;
    box-shadow: 3px 3px 8px #000;
}


.gallery__item > img:hover {
  transform: scale(1.02);
  transition: all 0.25s ease;
  cursor: zoom-in;
}

.myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 50%;
    max-width: 75%;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-content {
    -webkit-animation-name:zoom;
    -webkit-animation-duration:.6s;
    animation-name:zoom;
    animation-duration:.6s
}

#caption {
    -webkit-animation-name:zoom;
    -webkit-animation-duration:.6s;
    animation-name:zoom;
    animation-duration:.6s
}

@-webkit-keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(.4)}
    to {transform:scale(1)}
}

.out {
    animation-name: zoom-out;
    animation-duration: 0.6s;
}

@media (max-width: 1000px){
    
}

/* @media (max-width: 1000px){
  .gallery__item > img {
    width: 150%;
    margin-left: -50px;
  }
  .modal-content {
    width: 97%;
    max-width: 100%;
  }
} */