.product-detail {
  flex-direction: column;
  max-width: 1500px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: Inter, sans-serif;
}

h1 {
  font-size: 28px;
  color: #1da883;
  line-height: 42px;
  font-weight: bold;
}
h2 {
  font-size: 20px;
  color: #1da883;
  line-height: 42px;
  text-align: left;
  font-weight: bold;
}

.back-link {
  display: flex;
  justify-content: left;
}
.back-link a,
.back-link a:hover {
  text-decoration: none;
}

.product-main {
  display: flex;
}
.product-main .pictures,
.product-main .text {
  width: 50%;
  flex: 1 0 auto;
}
@media only screen and (max-width: 600px)  {
  .product-main {
    display: flex;
    flex-direction: column;
  }
  .product-main .pictures,
  .product-main .text {
    width: 100%;
    flex: 1 0 auto;
  }
}
.product-main .text {
  text-align: left;
}

.product-details table {
  border-collapse: collapse;
  width: 100%;
}
.product-details table thead {
  font-weight: bold;
}
.product-details table th, td {
  text-align: center;
  padding: 8px;
}

.product-details table tr:nth-child(even) {background-color: #f2f2f2;}

#custom {
  color: white;
  text-align: center;
  margin-bottom: 32px;
}
#custom p {
  padding: 32px;
}
#custom a {
  text-align: center;
  height: auto;
}
#custom a:hover {
  border: 3px black solid;
}