* {
  margin: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  background-color: hsl(30, 38%, 92%);
  font-family: "Montserrat", sans-serif;
}
h1 {
  font-family: "Fraunces", serif;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 20px;
  padding-top: 20px;
}
h3 {
  font-size: 14px;
  font-weight: 500;
  color: hsl(228, 12%, 48%);
}
.texto {
  font-size: 14px;
  padding-bottom: 20px;
  color: hsl(228, 12%, 48%);
}
main {
  display: flex;
  flex-direction: row;
  background-color: white;
  max-width: 567px;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
}
img {
  width: 100%;
  height: 100%;
}
.content {
  padding: 20px;
  width: 100%;
}
strong {
  color: hsl(158, 36%, 37%);
  font-weight: bold;
  font-family: "Fraunces", serif;
  font-size: xx-large;
}

.shop {
  margin-top: 20px;
  background-color: hsl(158, 36%, 37%);
  border-radius: 10px;
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

@media (max-width: 375px) {
  main {
    display: flex;
    flex-direction: column;
  }
}
