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-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 90%;
  margin: 5px;
  overflow: hidden;
}
card-img img-frame img {
  height: 100%;
  width: auto;
}
card-img content {
  width: 90%;
  height: 45%;
  border-radius: 5px;
  padding: 1%;
}
card-img content h3 {
  border-bottom: 2px solid gray;
  margin-bottom: 0;
  margin-top: 0;
}

.normal-card content {
  overflow-y: scroll;
}
.normal-card content p {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 10px;
}
.normal-card content p::-webkit-scrollbar {
  display: none;
}

card-img.text img-frame {
  display: none;
}
card-img.text content {
  height: 95%;
  width: 95%;
}
card-img.text content p {
  height: 85%;
}

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

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