html {
    height: 100%;
    background: #e3e3e3;
  }
  
  body {
    height: 100%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    align-items: center;
    -webkit-align-items: center;
    margin: 0;
  }
  
  h1 {
    text-align: center;
  }
  
  .sample-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .sample-item {
    width: 68%;
    margin: 0;
    padding: 10px;
    background-color: white;
  }
  
  .sample-item:nth-child(even) {
    background-color: #eee;
  }

  .item-row {
    display: flex;
    align-items: center;
  }
  
  .thumbnail {
    width: 200px;
    height: 150px;
    overflow: hidden;
    margin-right: 20px;
  }
  
  .thumbnail img {
    width: 100%;
    height: auto;
  }
  
  .item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 60%;
  }
  
  .item-description {
    margin-bottom: 10px;
  }
  
  .links {
    align-self: flex-end;
  }
  
  .links a {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    background-color: #534cb8;
    color: white;
    text-decoration: none;
    border-radius: 3px;
  }
  
  .links a:hover {
    background-color: #555fe2;
  }