.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  margin: 30px auto;
  width: 200px;
  height: 300px;
  border-radius: 20px;
  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: inherit;
  height: inherit;
  border-radius: 20px;
  object-fit: cover;
}

.card .card_detalle {
  text-align: center;
  border-radius: 0px 0px 20px 20px;
  color: #F93F90;
  font-size: 16px;
  margin-top: -110px;
  height: 40px;
  padding: 0px 10px 10px 10px;
}

.card_title {
    text-align: center;
    font-weight: bold;
    padding: 0px 10px 10px 10px;
  }

.card_title h3 {
    margin: 0 0 2px 0;
  }

.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;
}

.ver-btn {
    background: #F93F90;
    border: 2px solid #00ECCF;
    color: #ffffff;
    font-size: inherit;
    padding: 5px 5px;
    transition: 0.5s;
  }

   .ver-btn:hover {
    background: #00ECCF;
    border-radius: 50px;
    border-color: 2px solid #F93F90;
    color: #F93F90;
  }


@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}

    .textodetalleCurso {
    font-size: 32px;
    }

/*
.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
  transition: 0.4s;
}
*/