* {
  box-sizing: border-box;
}

body {
  padding: 20px;
}

.card {
  min-height: 250px;
  min-width: 345px;
  display: flex;
  flex-wrap: wrap;
  /* box-shadow: 1px 1px 1px black; */
  box-shadow: 0 10px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  padding: 15px 10px 0;
}

.img-container {
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  height: 230px;
  justify-content: center;
  padding-bottom: 5px;
}

.content {
  min-width: 230px;
  flex-basis: 0;
  flex-grow: 3;
  padding: 0 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

img {
  max-width: 285px;
}

.actions {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;

}
