.product {
    display: flex;
    padding: 10px;
}

#update {
    border-radius: 4px;
    background-color: skyblue;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
  }
  
  #update:hover {
    background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
    box-shadow: 0 10px 25px 0 rgba(49, 196, 190, 0.75);
    transition: all 1s ease-in-out;
  }

.thumbnail {
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
  }

  .product .title {
    font-size: 0.7em;
    font-weight: 600;
  }
  .product .date {
    color: grey;
    font-size: 0.5em;
  }
