.column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    bottom: 10px;
}
@media only screen and (min-width: 768px) {
    .column {
        flex: 30%;
    }
}


.content {
    flex: 100%;
    flex-direction: row;
    overflow: scroll;
}
@media only screen and (min-width: 768px) {
    .content {
        flex: 78%;
        flex-wrap: wrap;
    }
}

.gallery-item {
    flex: 100%;
    display: flex;
    flex-direction: column;
}
.gallery-item:hover {
    cursor: pointer;
}
.image-container {
    width: 98vw;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: auto;
    margin-bottom: auto;
    object-fit: cover;
    object-position: center; /* Center the image within the element */
    transition: all 2s;
}
.image-container:hover {
    object-fit: contain;
}
@media only screen and (min-width: 768px) {
    .gallery-item {
        flex: 25%;
    }
    .image-container {
        width: 25vw;
        height: 25vw;
    }
}

.description-container {
    font-size: small;
    padding-left: 10px;
    padding-right: 10px;
}

.section-title {
    margin-right: 20px;
    font-size: 24px;
    flex: 100%;
    height: fit-content;
}

.subsection-title {
    margin-right: 20px;
    font-size: 18px;
    text-transform: uppercase;
    flex: 100%;
    height: fit-content;
}
