@charset "utf-8";
/* CSS Document */
 
			
	hr{clear: both;}
	
.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content:space-between;
  flex-wrap: wrap;
}

.card {
  margin: 30px auto;
  width: 400px;
  height:auto;
  border-radius: 40px;
  box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
  cursor: pointer;
  transition: 0.4s;
}

.card .card_image {
  width: inherit;
  height: inherit;
  border-radius: 20px;
}

.card .card_image img {
  width: 100%;
  height: inherit;
  border-radius: 20px;
  object-fit:contain;
}

.card .card_title {
  text-align:start;
  border-radius: 0px 0px 40px 40px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-top: -80px;
  height: 40px;
}

.card:hover {
  transform: scale(0.9, 0.9);
  box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
    -5px -5px 30px 15px rgba(0,0,0,0.22);
}

.title-white {
  color: white;
}

.title-black {
  color: red;
}
	p{font-size: 16px;}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}
	h3{text-align: center}

