#content {
    background-color: grey;
    font-family: 'Poppins', sans-serif;
    color: white;
    padding: 85px 60px 40px;
}

#photos {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: grey;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.image-container {
    padding: 10px;
    cursor: pointer;
}

#photos img {
    width: 300px;
    height: 300px;
    object-fit: fill;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#image_viewer {
    position: absolute;
    top: 70px;
    left: 5%;
    width: 90%;
    height: 90%;
    background-color: white;
    border: 1px solid black;
    z-index: 12;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}

#image_viewer img {
    max-height: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
}