#bottom-container {
    padding: 10px;
    }

.row {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 100px;
    -ms-flex: 1 1 100px;
    flex: 1 1 100px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
     align-self: stretch;
    }

.picture { 
  display: inline-block;
  margin: 15px;
  box-sizing: border-box;
}

@media only screen and (max-width: 750px) {

  html #bottom-container { 
    padding: 0px;
  }

  html .picture {    
    margin: 1%;
  }
}

