.responsive-table {
  text-align: center;
  vertical-align: middle;
}

.responsive-table tr {height: 20px}

.responsive-table td {
  border: 1
  width: 50%
  height: 20px
}

@media screen and (max-width: 734px) {
  .responsive-table {
    text-align: center;
    vertical-align: middle;
    min-width: 360px;
  }
  
  .responsive-table tr {
    margin-bottom: 10px;
  }

  .responsive-table td {
    display: block;
    width: 50%;
    border: 1px solid #aaa;
    padding-left: 25%;
    padding-right: 25%;
    padding-bottom: 80px;
    margin-left: -1px;
    
  }
    .responsive-table p {
    margin-left: -50%;
    margin-right: -50%;
  	vertical-align: middle;
  }
}
