#store {
    margin-top: 50px;
    width: 100%;
    background-color: #000;
    color: white;
}

#store .row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 50%;
    height: auto;
}

#store .column {
    flex-grow: 1;
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    flex-direction: column;
}

#store .image {
    display: flex;
    width: 100%;
    margin-top: 30px;
}

#store h1 {
    font-weight: 800;
    /* padding: 0px 0px 10px; */
}

@media (max-width: 768px) {
    #store h1 {
        font-size: 16px;
        /* padding: 0px 0px 10px; */
    }

    #store .row {
        width: 90%;
    }

    #store .column {
        padding: 50px 0 50px;
    }
}