.container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.card {
  margin: 10px;
  background-color: #fff;
  border-style: none;
  border-radius: 15px 15px 15px 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 300px;
}
.card:hover {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.card-header img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
}
.card-body {
  font-family: "Noto Sans", Sans-serif;
  padding: 20px;
  min-height: 150px;
}

.card-body h2 {
  font-family: "Noto Sans", Sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: -1.1px;
  word-spacing: 1px;
  margin: 10px 0 15px;
}

.card-body p {
  font-size: 13px;
  margin: 0 0 40px;
}
