card-img {
  background-color: gray;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}
card-img img {
  height: 50%;
  width: auto;
  margin: 5px;
}
card-img content {
  width: 90%;
  height: 45%;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}
card-img content h3 {
  border-bottom: 2px solid gray;
  margin-bottom: 0;
}
card-img content p {
  height: 75%;
  overflow-y: scroll;
  margin-top: 10px;
}
card-img content p::-webkit-scrollbar {
  display: none;
}

card-img.text content {
  height: 100%;
  width: 95%;
}

card-img.horizontal {
  flex-direction: row;
}
card-img.horizontal img {
  height: auto;
  width: 50%;
}
card-img.horizontal content {
  width: 45%;
  height: 90%;
}

@media screen and (max-width: 500px) {
  card-img.horizontal {
    flex-direction: column;
  }
  card-img.horizontal img {
    height: 50%;
    width: auto;
  }
  card-img.horizontal content {
    width: 90%;
    height: 45%;
  }
}/*# sourceMappingURL=card.css.map */