body {
    /* background-image: url('../images/home_reference_twitch.png'); */
    background-image: url('../images/bg.png');
    background-attachment: fixed;
    background-size: cover;
    /* background: #fef8f1; */
    overflow-x: hidden;
}
.gallery {
    display: flex;
}

.gallery .col{
    display: block;
    width: 33%;
    margin: 5px 5px;
}

.gallery .col .image {
    width: 100%;
    /* border-color: white;
    border-width: 3px;
    border-style: solid; */
    background-color: #fef9f1;
    z-index: 1;
    margin: 0px auto;
    margin-bottom: 5px;
    display:flex;
    align-items: center;
    overflow: hidden;
}

.gallery .col .image:hover img{
    transform: translate(-50%) scale(1.1);
}

.gallery .col .image img {
    transition: transform 1.5s cubic-bezier(.14,.4,.09,.99)!important;
    position: relative;
    width: 100%;
    margin-left: 50%;
    transform: translate(-50%);
    align-self: center;
}

.footer{
    position: absolute;
    bottom: 0;
}

@media screen and (max-width: 1000px) {
    .gallery {
        display: block;
        margin: 0px auto;
    }

    .gallery .col{
        display: block;
        width: 97.5%;
        margin: 10px auto;
    }

    .gallery .col .image {
        width: 100%;
        /* border-color: white;
        border-width: 3px;
        border-style: solid; */
        background-color: #fef9f1;
        z-index: 1;
        margin: 0px auto;
        margin-bottom: 15px;
    }
}