/* Full table layout */
td {
    width: 50%;
    text-align: center;
  }
  
  .name {
    font-size: x-large;
    margin-bottom: 0;
  }
  
  .date,
  .name {
    font-weight: bold;
    color: orange;
  }
  .image {
    display: flex;
    align-items: center;
    margin-right: 10px;
    justify-content: space-around;
  }
  .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .summary {
    max-width: 100%;
    color: white;
  }
  
  .summary p {
    width: 80%;
  }
  
  .genres {
    color: #fff1bf;
    font-size: large;
  }
  
  td img:not(.logo) {
    transition: transform 0.25s ease;
  }
  
  td img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  
  /* Changing table for mobile */
  @media only screen and (max-width: 1200px) {
    td {
      display: table-row;
    }
  }
  