.wrapper, html, body {
  height: 100%;
  margin: 0;
}
.wrapper {
  display: flex;
  flex-direction: row;
}
p {
  margin: 46px 0;
}
.cell {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  height: 100%;
}
.cell:first-child {
  background-color: #FBFBFB;
}
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 46px;
  max-width: 400px;
  font-size: 16px;
}

.description {
  max-width: 400px;
}

.product img {
  max-width: 95%;
}

@media only screen and (max-width: 860px) {
  .wrapper {
    flex-direction: column;
  }
  .cell {
    width: 100%;
  }
  .product {
    margin: 24px 12px;
  }
  p {
    margin: 24px 0;
  }
  .product .button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 320px) {
  .product .button {
    font-size: 14px;
  }
}