.Table {
    display: flex;
    flex-flow: column nowrap;
      justify-content: space-between;
    border: 1px solid #000;
    font-size: 1rem;
    margin: 0.5rem;
    line-height: 1.5;
  }
  .Table-header {
    display: none;
  }
  .Table-row {
    width: 100%;
  }
  .Table-row:nth-of-type(even) {
    background-color: #f2f2f2;
  }
  .Table-row-item {
    display: flex;
      flex-flow: row nowrap;
      flex-grow: 1;
      flex-basis: 0;
    padding: 0.5em;
    word-break: break-word;
  }
  .Table-row-item:before {
    content: attr(data-header);
    width: 30%;
    font-weight: 700;
  }
      
  @media (min-width: 500px) {
    .Table-header {
      font-weight: bold;
          background-color:#7F0255;
            color: #fff;
    }
      .Table-row {
      display: flex;
        flex-flow: row nowrap;
    }
      
    .Table-row:nth-child(2n+3) {
      background-color: #fff;
    }
  
      .Table-row-item {
      border: 1px solid #fff;
      padding: 0.5em;
    }
    .Table-row-item:before {
      content: none;
    }
  }