﻿body {
  color: white;
  width: 100%;
  text-align: center;
  background: rgb(32, 16, 32);
  background: linear-gradient(175deg, rgba(32, 16, 32, 1) 0%, rgba(60,40, 60, 1) 46%, rgba(32, 16, 32, 1) 100%);
  font-family: 'Chivo', sans-serif;
  font-weight: 300;
  font-size: 24px;
  display: grid;
  justify-content: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
}

a,
a:visited {
  color: white;
}

.title {
  font-size: 40px;
}

.products {
  margin: 10px 16px;
  max-width: 1200px;
}

.product {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-gap: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px;
  margin-top: 16px;
}

  .product .thumbnail {
    line-height: 0;
    width: 384px;
    background-color: rgba(0, 0, 0, 0.2);
    height: 216px;
  }

    .product .thumbnail img {
      max-width: 384px;
      max-height: 216px;
      height: 100%;
    }

  .product .details {
    text-align: left;
    font-size: 16px;
    display: grid;
    grid-template-rows: min-content min-content 1fr min-content;
  }

  .product .title {
    font-size: 30px;
    font-weight: normal;
    margin-top: 2px;
    margin-bottom: 0;
  }

  .product .results {
    font-size: 80%;
    opacity: 0.8;
    text-transform: uppercase;
  }

  .product .description {
    margin-top: 20px;
  }

  .product .links {
    display: grid;
    grid-template-columns: repeat(12, min-content);
    grid-gap: 24px;
  }

  .product .link {
    white-space: nowrap;
  }

    .product .link a {
      vertical-align: top;
      margin-left: 5px;
      display: inline-block;
      margin-top: 1px;
      text-decoration: none;
      font-size: 85%
    }




