.buttons {
    width: 50%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.button img {
    width: 100%;
    height: auto;
}
@media screen and (min-width:1000px) {
    
    .buttons {
        width: 35%;
        max-width: 650px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .button {
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .button img {
        width: 100%;
        height: auto;
    }
}