body{
    background-color: white;
}
.contenedor-tarjetas{
    width: 100%;
    max-width: 100%;
    height: 450px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.contenedor-tarjetas .tarjeta{
    width: 250px;
    height: 430px;
    border-radius: 15px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 20px;
    text-align: justify;
    transition: all 0.25s;
}

.contenedor-tarjetas .tarjeta:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0,0,0,0.2);
}

.contenedor-tarjetas .tarjeta img{
    width: 240px;
    height: 200px;
    border-radius: 15px 15px 0 0;
}

.contenedor-tarjetas .tarjeta p{
    padding: 0 0.5rem;
}

.a-lm{
    color: yellow;
    background-color: black;
    border-radius: 25px;
    padding: 10px 10px;
}

.contenedor-tarjetas .tarjeta a{
    text-decoration: none;
    margin: 10px;
}

.a-lm:hover{
    background-color: rgb(20, 20, 20);
    border-bottom: yellow solid 1px;
}

.contenedor-tarjetas .tarjeta label{
    color: rgb(216, 216, 10);
    font-weight: bold;
}

.contenedor-tarjetas .tarjeta h3{
    line-height: 10px;
    color: blue;
}

p{
    color: black;
}
/* 

.contenedor-tarjetas .tarjeta h3{
    font-weight: bold;
} */