@import url('https://fonts.googleapis.com/css?family=Acme&display=swap');
.tarjeta{
    background-color: white;
    width: 275px;
    height: fit-content;
    margin: 2em;
    padding: 1em;
    border: black solid 3px;
    box-shadow: 5px 5px rgb(117, 87, 3, 0.4);
    transition-property: "box-shadow";
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.1s;
    border-radius: 20px;
}

.tarjeta:hover{
    box-shadow: 5px 5px rgb(117, 87, 3, 0.8);
}
.tarjeta img{
    width: 100%;
    border: 3px dashed #3d6098;
}
.tarjeta h3{
    color: black;
    font-family: 'calibri', sans-serif;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-family: 'Acme', sans-serif;
}
.tarjeta li{
    list-style-image: url("vineta.png");
    padding-left: 2em;
    font-family: 'Acme', sans-serif;
}
.tarjeta a{
    color: black;
    display: block;
    text-decoration: none;
    padding: 2px;
    font-family: 'calibri', sans-serif;

}
.tarjeta-lista a:hover{
    color: blue;
}
.tarjeta>a{
    display: inline-block;
    padding: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    background-color: #3d6098;
    width: auto;
    border: 3px solid black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

@keyframes botonesAnimacion{
    from{
        transform: none;
    }
    to{
        transform: rotate(-10deg);
    }
}

.tarjeta>a:hover{
    animation-name: botonesAnimacion;
    animation-duration: 1s;
    animation-delay: 0.1s;
}

.tarjeta img{
    border-radius: 10px 10px 0px 0px ;
}

.contenedor-tarjetas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: rgb(243, 213, 42);
}

