.main {
    width: 100%;

    display: flex;
    justify-content: center;
}

.text-image-container {
    width: 1280px;
    /* height: 500px; */
    /* background-color: bisque; */

    display: flex;
    flex-wrap: wrap;
}

.image-container {
    width: 700px;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: rgb(140, 140, 167);

    border: 0px solid white;
    border-radius: 5px;
}

.image {
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 500px;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: scale-down;
}

.gallery {
    font-family: 'Open Sans', sans-serif;
    background-color: rgb(190, 190, 190);
    margin-left: 20px;
    width: 544px;
    border: 0px solid white;
    border-radius: 5px;

    height: auto;
    max-height: 1200px;

    display: grid;
    grid-template-columns: repeat(8, 60px);
    grid-template-rows: repeat(10, 60px);
    grid-gap: 8px;
    justify-content: space-between;
    padding: 8px;
}

.gallery-image {
    border: 1px solid black;

    width: 60px;
    height: 60px;
    object-fit: cover;
}