#tarjetas a {
    color: #191919;
}

#tarjetas a div {
    margin-bottom: 50px;
}

#tarjetas a:last-child div {
    margin-bottom: 0;
}

#tarjetas a:hover {
    text-decoration: none;
}

.tarjeta {
    border-radius: 20px;
    transition: all 0.6s ease-in-out;
}

.tarjeta:hover {
    background-color: #FFFFFF;
}

.tarjeta img {
    border-bottom: 5px solid #191919;
    height: 400px;
}

.informacion {
    padding-bottom: 25px;
    padding-top: 25px;
    text-align: center;
}

.informacion p {
    padding-bottom: 5px;
    padding-top: 5px;
}

.informacion p:first-child {
    font-size: 25pt;
}

.calculadora {
    font-size: 20pt;
}

.nombredelaCalculadora {
    font-weight: bold;
}

.informacion p:nth-child(2) {
    font-size: 15pt;
}

.informacion p:last-child {
    font-family: DejaVuLigera;
}

@media screen and (max-width: 1023px) {

    .tarjeta img {
        height: auto;
        width: 100%;
    }

}