.gallery-container {
    padding: 10px;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.gallery-img {
    display: grid;
    place-items: center;
}
.gallery-img img{
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.3));
    border-radius: 3px;
}
#modal-container {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99;
    display: none;
    place-content: center;
}
#modal-contents{
    width: 75vw;
    height: 75vh;
    display: flex;
    place-content: center;
}
#modal-contents img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}