.gallery-content {
    margin: 0px 200px;
    overflow-y: hidden;
    overflow-x: scroll;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-content img {
    display: inline-block;
    height: 300px;
    width: auto;
    margin: 10px;
}

.gallery-title {
    margin: 50px 200px;
    font-size: 24px;
    font-weight: bold;
}

.gallery-description {
    margin: 50px 250px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .gallery-content {
        margin: 10px;
        flex-direction: column;
        align-items: center;
        overflow-x: auto;
        max-height: none;
    }

    .gallery-content img {
        height: auto;
        width: 90vw;
        max-width: 100%;
        margin: 10px 0;
    }

    .gallery-title {
        margin: 20px 10px;
        font-size: 20px;
        text-align: center;
    }

    .gallery-description {
        margin: 20px 10px;
        font-size: 15px;
    }
}