.gallery {
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.gallery img {
    height: 250px;
    width: 333px;
    margin: 15px 15px;
    box-shadow: 0px 0px 5px 2px grey;
}

.gallery img:hover {
    cursor: pointer;
}

#piccontainer {
    display: flex;
}



.piczoom {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 7vh;
}

.piccontainer {
    position: sticky;
    top: 0px;
    min-height: 300px;
    max-height: auto;
    max-width: 800px;
    margin: 30px auto;
}

.piccontainer img {
    /* max-width: 60vw; */
    min-width: 400px;
    height: auto;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
}