.modal-gallery {
    z-index: 1000;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.content-gallery{
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.content-gallery::-webkit-scrollbar {
    width: 10px;
}
.content-gallery::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
  }

.content-gallery > img {
    margin-bottom: 1rem;
    width: 100%;
    height: 100%;
}