.gallery{
    display: flex;
    width: 100vw;
    flex-wrap: wrap;
    gap:0px;
}
.galleryItem{
    width:90%;
    min-width:300px;
    max-width: 600px;
    background-color: rgb(121, 121, 121);
    display: block;
    padding: 5px;
    color:white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
    height:fit-content;
}
.gallery-img{
    width:90%;
    display: block;
    margin: auto;
    box-shadow: 0px 0px 8px black;
}
.gallery-caption{
    text-align: center;
}