.product-container {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #242d60c7;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
  'Helvetica Neue', 'Ubuntu', sans-serif;
  min-height: 300px;
  margin: 0;
  padding: 25px;
  border-radius: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-color: lightgray; border-style: ridge; border-radius: 15px;
  box-shadow: 6px 6px 12px rgba(0,0,0,.64);
}

.product-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
p.product {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: #242d60;
  height: 100%;
  width: 100%;
  padding: 10px;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: justify;
  padding-right: 10px;
  padding-left:  10px;
}

h5.product {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #242d60;
  margin: 0;
  opacity: 0.75;
  font-size: 18px;
  padding-bottom: 5px;
}
.product-button {
  height: 36px;
  background: #556cd6;
  color: white;
  width: 100%;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.6;
  border-radius: 0 0 10px 10px;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
.product-button:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 600px) {
  p.product {
    font-size: 12px;
      line-height: 16px;
  letter-spacing: -0px;
  }
}