h1 {color:blue; text-align:center;font-family:verdana;}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  margin: 10px;
  padding: 1vw;
  max-width: 45vw;
}
body {
  background-image: linear-gradient(pink, yellow, pink);
  font-family: Helvetica;
  font-weight: 600;
}
.content {
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image {
  width: 90%;
  height: 90%;
}

.title {
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Merriweather Sans", sans-serif;
  color: #000;
}